mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
18 lines
237 B
Python
18 lines
237 B
Python
def problem_p02753(input_data):
|
|
def main():
|
|
|
|
S = eval(input_data)
|
|
|
|
S = set(S)
|
|
|
|
if len(S) == 1:
|
|
|
|
return "No"
|
|
|
|
else:
|
|
|
|
return "Yes"
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|