diff options
Diffstat (limited to '4p11.cpp')
-rw-r--r-- | 4p11.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/4p11.cpp b/4p11.cpp new file mode 100644 index 0000000..308ef2c --- /dev/null +++ b/4p11.cpp @@ -0,0 +1,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; +} |