Quick actions

cmd+k|ctrl+k

Navigation

Languages

task 135a

Snippet info

Language

Cpp

Visibility

public

Author

niktyutenko

Created

2018-10-10T10:01:12Z

Updated

2018-10-14T09:12:15Z

#include <iostream>
#include "cmath"
using namespace std;

int main () {
    float a,b,c;
    
    cin >> a;
    cin >> b;
    cin >> c;
    
    if ((b>a) && (a>c)) {
        cout << "True";
    }
    else{
    cout << "False";
    }
    return 0;
    
}
INFO