Run ID:96116
提交时间:2024-11-03 09:14:45
a,b,c = map(int,input().split()) if a>b and a>c: print("a") if b>a and b>c: print("b") if c>a and c>b: print("c")