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

/*
 *
 * 4.1
 *
 *
 */

int main () {

	// It will print: 105
	std::cout << 5 + 10 * 20/2 << std::endl;
	return 0;
}