def meg(a,b): if a>b: m=a else: m=b return m x,y,z=input('Δώσε τρεις αριθμούς:')
print meg(x,y,z)
print meg(meg(x,y),z)
print meg(y,z)