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

1000.A+B
Posted by ashraful islam 28 Aug 2012 01:01
What is the problem???


#include<iostream>
using namespace std;
main()
{int a;
int b;
cin>>a;
cin>>b;
cout<<a+b<<endl;
}
Re: 1000.A+B
Posted by ONU_Latysh 28 Aug 2012 03:27
#include<iostream>
using namespace std;
void main()
{int a;
int b;
cin>>a;
cin>>b;
cout<<a+b<<endl;
}
Re: 1000.A+B
Posted by ashraful islam 28 Aug 2012 12:53
just for return type!Thanks.