a = int(input())
b = int(input())
c = float(input())
d = input()
e = input()
print(a)
print(b)
print("{:.1f}".format(c))
print(d)
print(e)