ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1000. A+B Problem

answer
Posted by abdulkhakim 2 Mar 2013 21:21
#include<iostream>
using namespace std;
int main()
{
 int a,b;
cin>>a>>b;
 cout<<a+b;
 return 0;
}
Re: answer
Posted by Top Secret 22 Mar 2013 22:31
cout << a + b << endl;
Re: answer
Posted by abdulkhakim 11 Apr 2013 19:31
 cout<<a+b;
Re: answer
Posted by Malik 29 Jun 2013 03:18
after int main() need "{"
Re: answer
Posted by Айарпи 28 Jan 2014 15:27
:(