Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int a, b;
- cout << "Iveskite a = ";
- cin >> a;
- cout << "Iveskite b = ";
- cin >> b;
- int r1 = (a-b-12)*2;
- int c;
- cin >> c;
- int r2 = (r1-c-13)*2;
- cout << r2;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement