BC21 牛牛学加法

思路:

step1:输入a和b;
step2:相加输出;

代码如下:

a,b = list(map(int,input().split()))
print(a+b)