mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
14 lines
167 B
Python
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"
|