第一次用C++,看视频觉得没问题,结果上来就忘写using namespace std;了
#include<iostream> using namespace std; int main() { int A,B; cin>>A>>B; cout<<A+B<<endl; return 0; }