“蓝桥杯”练习系统 - 入门训练 - A+B问题

思路:

A+B, 没有什么特别的.

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main()
 5 {
 6     ios::sync_with_stdio(false);
 7     cin.tie(0);
 8 
 9     int a, b;
10     cin >> a >> b;
11     cout << a + b << endl;
12 
13     return 0;
14 }

 

posted @ 2020-01-31 21:06  域Anton  阅读(140)  评论(0)    收藏  举报