lab4
#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