Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int paketce_1, paketce_2;
- cin >> paketce_1 >> paketce_2;
- int zbir = 0;
- zbir = paketce_1 + paketce_2;
- zbir /= 2;
- zbir *= 7;
- cout << zbir << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement