Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab4(135a)

Snippet info

Language

Cpp

Visibility

public

Author

misha127831

Created

2018-11-06T06:24:10Z

Updated

2018-11-06T06:24:10Z

#include <iostream>
using namespace std;

int main() {
    int a;
    int b;
    int c;
    cin>>a>>b>>c;
    if (a<b && b<c){
        cout<<"Неравенство выполняется";
    }else {
        cout<<"Неравенство не выполняется";
    }
    return 0;
}
INFO