Advertisement
Subrata_Nandi

Hello

Sep 19th, 2023
645
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     #ifndef ONLINE_JUDGE
  6.         freopen("input.txt", "r", stdin);
  7.         freopen("output.txt", "w", stdout);
  8.     #endif
  9.  
  10.     int a,b;
  11.     cin>>a>>b;
  12.     cout<<a+b<<"\n";
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement