H24
NT
28 tháng 12 2021 lúc 22:50

#include <bits/stdc++.h>

using namespace std;

long long c,d;

int main()

{

cin>>c>>d;

if (c>d) cout<<"c lon hon d";

else if (c<d) cout<<"c nho hon d";

else cout<<"c bang d";

return 0;

}

Bình luận (0)