diff --git a/algorithms/python/ex age.py b/algorithms/python/ex age.py new file mode 100644 index 0000000..67a8c12 --- /dev/null +++ b/algorithms/python/ex age.py @@ -0,0 +1,9 @@ +x = float(input("enter x")) +y = float(input("enter y")) +z = float(input("enter z")) +if x >y and x>z: + print (x) +elif y>x and y>z: + print (y) +elif z>x and z>y: + print (z)