#include<iostream> using namespace std; int main() { int a, b; cin>>a>>b; cout<<a+b; return 0; }
cin/cout可以连续输入(>>)/输出(<<)
空格和回车可作为分隔符且不被输入
#include<iostream> using namespace std; int main() { int a, b; cin>>a>>b; cout<<a+b; return 0; }
cin/cout可以连续输入(>>)/输出(<<)
空格和回车可作为分隔符且不被输入