http://acm.hdu.edu.cn/showproblem.php?pid=1002
题目要求:
输入:a b
输出:a + b = c
a,b =(input().strip().split())
print(a,'+',b,'=',int(float(a)+float(b)))
http://acm.hdu.edu.cn/showproblem.php?pid=1002
题目要求:
输入:a b
输出:a + b = c
a,b =(input().strip().split())
print(a,'+',b,'=',int(float(a)+float(b)))