s = input()
s1 = s.upper().replace(' ', '')
if s1.count('м') > s1.count('н'):
print('м > н')
else:
print('м < н')
Объяснение:
s = input()
s1 = s.upper().replace(' ', '')
if s1.count('м') > s1.count('н'):
print('м > н')
else:
print('м < н')
Объяснение: