summaryrefslogtreecommitdiff
path: root/4p4.cpp
blob: d290a857893141f09228981dd10d54ed89fd8970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

/*
 *
 * 4.4
 *
 *
 */

int main () {

	int res1 = ((((12 / 3) * 4) + (5 * 15)) + ((24 % 4) / 2));
	int res2 = 12 / 3 * 4 + 5 * 15 + 24 % 4 / 2;
	std::cout << res1 << " " << res2 <<  std::endl;
	return 0;
}