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 }
原文地址:https://www.cnblogs.com/lyqlyq/p/6617751.html