a=int(input("unesi a")) b=int(input("unesi b")) c=int(input("unesi c")) max=a if (b>max): max=b if (c>max): max=c print ("najveci broj je", max)