Quick actions

cmd+k|ctrl+k

Navigation

Languages

4lab(141)

Snippet info

Language

Cpp

Visibility

public

Author

bikhnevichk

Created

2018-11-06T06:48:49Z

Updated

2018-11-06T07:21:21Z

#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