Quick actions

cmd+k|ctrl+k

Navigation

Languages

task 135b

Snippet info

Language

Cpp

Visibility

public

Author

niktyutenko

Created

2018-10-10T10:02:55Z

Updated

2018-11-21T10:26:12Z

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

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