#include <iostream> using namespace std; int main() { int a, b; // 從輸入讀取兩個整數 cin >> a >> b; // 輸出和 cout << a + b << endl; return 0; }