2条回答 默认 最新
- -Undefined_ 2021-11-10 15:21关注
a,b,c=map(int,input().split()) if a==b: print(c) else: if a==c: print(b) else: print(a)
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
a,b,c=map(int,input().split())
if a==b:
print(c)
else:
if a==c:
print(b)
else:
print(a)