#include using namespace std; int main() { int a, b; cin >> a >> b; // 整数 a, b の入力 int sum = a + b; cout << sum << endl; // 合計の出力 return 0; }