lesson_5_ex_2_17_18

# -*- coding: utf-8 -*-
"""
Use of casting theory
@authors: stkarlos
"""

a = float(raw_input('dose to a: '))
b = float(raw_input('dose to b: '))
c = float(raw_input('dose to c: '))

if (a >= b) and (a >= c):
    M = a
elif (b >= c) and (b >= a):
    M = b
else:
    M = c
print " o megaliteros einai o %f." %M

 

Posted in Uncategorized