using namespace std;
main(){
int age, height;
cout<<"Input age"; cin >> age;
cout<<"input height"; cin >> height; if(height == age) { cout << "Your height is equal to your age!"; } else if(height < age) { cout << "Your height is less than your age!"; } else if(height > age) { cout << "Your height is greater than your age!";
return 0; }
}
Output :