当前位置: 代码迷 >> 综合 >> Sum of two integers EIJudge - 000
  详细解决方案

Sum of two integers EIJudge - 000

热度:45   发布时间:2023-10-13 14:39:23.0

问题类型:一次性AC

03pie’s solution for [EIJudge-000]:
问题链接

#include<iostream>using namespace std;typedef long long ll;
int main(){ll n,m;while(cin>>n>>m){cout<<n+m<<endl; }return 0;
}
  相关解决方案