#include <iostream>using namespace std;int main() { //設定兩個變數(加數和被加數) int x,y; //讓電腦輸入加數及被加數 cin>>x>>y; //輸出最後結果 cout<<x+y;
return 0;}