fork download
  1. #include <bits/stdc++.h>
  2. #define ull unsigned long long
  3. #define ll long long
  4. #define el endl
  5. #define nl '\n'
  6. #define all(v) v.begin(), v.end()
  7. using namespace std;
  8.  
  9. void input()
  10. {
  11. if (fopen("in.txt", "r"))
  12. {
  13. freopen("in.txt", "r", stdin);
  14. freopen("out.txt", "w", stdout);
  15. }
  16. }
  17.  
  18. void init()
  19. {
  20. ios_base::sync_with_stdio(false);
  21. cin.tie(nullptr);
  22. }
  23. int main()
  24. {
  25. Fast:
  26. input();
  27. init();
  28. //---------------------------------------------------------------------------------------------------------------
  29.  
  30. int a1, a2;
  31. cin >> a1 >> a2;
  32.  
  33. cout << 180 - (a1 + a2) << nl;
  34.  
  35. return 0;
  36. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
2054706727