Solution - Timus Problem 1000. A+B Problem
1000. A+B Problem
Time limit: 1.0 second
Memory limit: 64 MB
Calculate a + b
Input
a and b
Output
a+b
Sample
Notes
Use + operator
|
#include<iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
cout << a+b << endl;
return 0;
}
আলোচনাঃ
আজ Timus এর এই সিম্পল প্রবলেম দিয়ে শুরু করলাম। দেখি কতদুর করা যায়।
Comments
Post a Comment