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

inputoutput
1 5
6

Notes

Use + operator

সল্যুশন্সঃ
#include<iostream>
using namespace std;
int main()
{
    int a, b;
    cin >> a >> b;
    cout << a+b << endl;

    return 0;
}

আলোচনাঃ
আজ Timus এর এই সিম্পল প্রবলেম দিয়ে শুরু করলাম। দেখি কতদুর করা যায়।

Comments

Popular posts from this blog

Solution - Codeforces Problem 327B - Hungry Sequence

Solution - Timus Problem 1293. Eniya

Solution - Timus Problem 1409. Two Gangsters