Advertisement
Ne-Biolog

Untitled

May 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. #include <algorithm>
  2. #include <iostream>
  3. #include <memory.h>
  4. #include <iterator>
  5. #include <cassert>
  6. #include <fstream>
  7. #include <iomanip>
  8. #include <cstdlib>
  9. #include <bitset>
  10. #include <vector>
  11. #include <cstdio>
  12. #include <string>
  13. #include <queue>
  14. #include <deque>
  15. #include <cmath>
  16. #include <ctime>
  17. #include <stack>
  18. #include <set>
  19. #include <map>
  20.  
  21. using namespace std;
  22.  
  23. const int N = (int)2e5 + 10;
  24.  
  25. int a[101][101];
  26.  
  27. int main ()
  28. {
  29. //freopen("input.txt" , "r" , stdin);
  30. //freopen("output.txt" , "w" , stdout);
  31. // ios_base::sync_with_stdio(false);
  32.  
  33. int x, y;
  34. cin >> x >> y;
  35. cout << y + x - 1 << endl;
  36.  
  37.  
  38.  
  39.  
  40. return 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement