Compile Error
foo.cc: In function 'int main()': foo.cc:8:10: error: expected '}' at end of input 8 | return 0; | ^ foo.cc:4:1: note: to match this '{' 4 | { | ^
正在同步测试数据,请稍后 [Hydro](https://hydro.ac)提供评测服务
代码
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
cout<<x+y;
return 0;