a,b,c=map(int,input().strip().split())
 print(max(a,b,c))

python abc pythonabc三个数输出最大值_python