1291 浮点A+B


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

小红在数学方面很有天赋,虽然还只有一年级,其他同学还只能计算十以内的加减,可她却能够进行小数的加减了。 现在,给你两个小数A和B,你的任务是代表小红计算出A+B的值。

Input

本题目包含多组测试数据,每组测试数据包含正小数A和B。小数长度不超过100。

Output

请在一行里面输出输出A+B的值,注意小数尾部不能留有多余的0。

Sample

Input

1.1 2.9
1.1111 2.3444
1 1.1
1 2

Output

4
3.4555
2.1
3

Source: 郑俊杰


Comments

There are no comments at the moment.