Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab4 

Snippet info

Language

Cpp

Visibility

public

Author

enifmankalinan

Created

2018-11-25T21:41:42Z

Updated

2018-11-26T21:20:10Z

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

int main() {
    int a,b,c;
    cin >> a >> b >> c;
    
    if(a == b || b == c || a == c)
         cout << "Их рост одинаков";
    else 
         cout << "Их рост не одинаков";
        
    return 0;
}       
INFO