#24794: 答案


948787 (幹嘛)

學校 : 不指定學校
編號 : 150489
來源 : [163.16.143.13]
最後登入時間 :
2021-04-01 12:46:24
a002. 簡易加法 | From: [163.16.143.13] | 發表日期 : 2021-03-26 13:11

#include <iostream>

 

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

using namespace std;

int main(int argc, char** argv) {

 

    int a,b;

 

cin>> a;

 

cin>> b;

 

cout<<a+b<<endl;

return 0;

}

 
ZeroJudge Forum