BC59 小乐乐找最大数

思路:

step1:输入四个数,max()函数即可;

代码如下:

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