lesson3_17_ear_1

# -*- coding: utf-8 -*-
"""
Basic interaction with the user
@authors: katkaranikola stkarlos
"""

x = int(raw_input('dose enan akeraio arithmo: '))
y = float(raw_input('dose enan dekadiko arithmo: '))
print x, type(x), y, type(y)

#print int(6.7), float(6), str(567)

print 17/2 # ektelei to div
print x/y #ektelei diairesh
Posted in Uncategorized