fork download
  1. #include <bits/stdc++.h>
  2. #define mp make_pair
  3. #define pb push_back
  4.  
  5. using namespace std;
  6.  
  7. typedef long long ll;
  8. typedef unsigned long long ull;
  9. typedef pair<int,int> pii;
  10. typedef pair<ll, ll> pll;
  11. typedef priority_queue<int> pqi;
  12. typedef priority_queue<ll> pql;
  13.  
  14. const int INF = 2147483648;
  15. const int MOD = 1000000007;
  16.  
  17. int A, B;
  18.  
  19. int main() {
  20. ios::sync_with_stdio(0);
  21. cin.tie(0);
  22. cin >> A >> B;
  23. cout << A+B;
  24. return 0;
  25. }
Success #stdin #stdout 0s 4288KB
stdin
Standard input is empty
stdout
Standard output is empty