10 lines
190 B
Python
10 lines
190 B
Python
x = int(input("Enter X value:"))
|
|
y = int(input("Enter Y value:"))
|
|
z = int(input("Enter Z value:"))
|
|
if x >= y and x >= z:
|
|
print(x)
|
|
elif y >= z and y >= z:
|
|
print(y)
|
|
else:
|
|
print(z)
|