Advertisement
Merevoli

Untitled

Mar 29th, 2022
601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6. //    freopen("input.txt", "r", stdin);
  7. //    freopen("output.txt", "w", stdout);
  8.  
  9.     int a, b;
  10.     cin >> a >> b;
  11.  
  12.     cout << (2 * (a) + 100) - b;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement