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

/*
 *
 * 4.1
 *
 *
 */

int main () {

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