A問題 Poor
1 2 3 4 5 6 7 |
a,b,c = map(int, input().split()) if a==b and b==c and a==c: print('No') elif a==b or a==c or b==c: print('Yes') else: print('No') |
1 2 3 4 5 6 7 |
a,b,c = map(int, input().split()) if a==b and b==c and a==c: print('No') elif a==b or a==c or b==c: print('Yes') else: print('No') |
コメント