a, b = map(float, input("请从键盘输入2个数,用空格分隔:").split(' ')) print(a, "+", "b", "=", a + b)
a,b=map(int,input().split()) print("%d+%d=%d"%(a,b,a+b))