HDOJ1000】的更多相关文章

#include<iostream> using namespace std; int main() { int a,b; while(cin >> a >> b) { cout << a+b << endl; } ; } 竟然要加个while!…