题解 1586: 蓝桥杯算法训练VIP-A+B problem

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

小南解题--A+B problem--49ms

摘要:#太简单所以发不出去请允许我废话一下代码请见以下:a,b =map(int,input().split())print(a+b)……

1586这题在逗我C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int a,b;scanf("%d %d",&a,&b); printf("%d",a+b); return ……