UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#212266#1. A+B ProblemPanjunnanCompile Error//C++11129b2024-10-13 16:30:402024-10-13 16:30:42

answer

#include<bits/stdc++.h>
using namespace std;
int main(){
    int a,b,c;
	cin>>a>>b;
	c=a+b;
	cout<<c;
    return 0;
}

Details

answer.code:5:2: error: stray '\357' in program
  cin>>a>>b;\x0d
  ^
answer.code:5:2: error: stray '\274' in program
answer.code:5:2: error: stray '\233' in program
answer.code: In function 'int main()':
answer.code:6:2: error: expected ';' before 'c'
  c=a+b;\x0d
  ^