fork download
  1. #include<bits/stdc++.h>
  2. typedef long long ll;
  3. using namespace std;
  4. int main()
  5. {
  6. ios_base::sync_with_stdio;
  7. cin.tie(NULL);cout.tie(NULL);
  8. ll n,m;
  9. string s;
  10. cin >> n >> m;
  11. cout << n+m << endl;
  12. /*cin >> s;
  13.   cout << s << endl;*/
  14. /*cin >> n >> m;
  15.   cout << "masing masing " << n/m << "\n";
  16.   cout << "bersisa " << n%m << "\n";*/
  17. }
Success #stdin #stdout 0s 4304KB
stdin
Standard input is empty
stdout
3