01:A+B问题

 1 #include<iostream>
 2 #include<cstdio>
 3 using namespace std;
 4 int main()
 5 {
 6     int a,b,c;
 7     scanf("%d%d",&a,&b);
 8     c=a+b;
 9     printf("%d",c);
10     return 0;
11 }

 

posted @ 2017-03-25 17:25  ioioioioioio  阅读(192)  评论(0编辑  收藏  举报