Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int prv = 10;
- int vtor = 20;
- int tret = 30;
- int cetvrt = 40;
- int proizvod1 = prv * vtor;
- int proizvod2 = tret * cetvrt;
- cout << proizvod1 + proizvod2 << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment