summaryrefslogtreecommitdiff
path: root/4p11.cpp
blob: 308ef2cdb9459c69516079bc3453860c5148307a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>

/*
 *
 * 4.11
 *
 *
 */

int main () {

	int a = 0;
	int b = 0;
	int c = 0;
	int d = 0;
	if(std::cin >> a >> b >> c >> d) {} else { return -1; }
	
	if(a > b && b > c && c > d) {
		std::cout << "True!" << std::endl;
	} else {
		std::cout << "False!" << std::endl;
	}
	
	return 0;
}