mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
8 lines
129 B
C++
8 lines
129 B
C++
#include <iostream>
|
|
using namespace std;
|
|
int main() {
|
|
int a, b;
|
|
cin >> a >> b;
|
|
cout << a + b << endl;
|
|
return 0;
|
|
} |