mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
22 lines
273 B
Python
22 lines
273 B
Python
def problem_p02771(input_data):
|
|
import numpy
|
|
|
|
A, B, C = input_data.split()
|
|
|
|
a = A
|
|
|
|
b = B
|
|
|
|
c = C
|
|
|
|
if a == b and a == c:
|
|
|
|
return "No"
|
|
|
|
elif a == b or b == c or a == c:
|
|
|
|
return "Yes"
|
|
|
|
elif a != b or b != c:
|
|
|
|
return "No"
|