codeflash-internal/experiments/pie_test_set/p02789.py

14 lines
167 B
Python

def problem_p02789(input_data):
NM = input().split()
N = int(NM[0])
M = int(NM[1])
if N == M:
return "Yes"
else:
return "No"