View Code of Problem 136

#include<iostream>

using namespace std;

int main(void){
  int m,n;
  cin>>m>>n;
  cout<<m+n<<endl;
}

Double click to view unformatted code.


Back to problem 136