View Code of Problem 136

#include<iostream>
using namespace std;

int main(void){
    int a,b;
    long sum;
    cin>>a>>b;
    sum=a+b;
    cout<<sum<<endl;
    return 0;
}

Double click to view unformatted code.


Back to problem 136