http://acm.hdu.edu.cn/showproblem.php?pid=1000
题目要求:两个数字求和
a,b=input().strip().split()
sum = float(a)+float(b)
c= int(sum)
print(c)
http://acm.hdu.edu.cn/showproblem.php?pid=1000
题目要求:两个数字求和
a,b=input().strip().split()
sum = float(a)+float(b)
c= int(sum)
print(c)