a = int(input())
b = int(input())
c = float(input())
d = input()
e = input()

print(a)
print(b)
print(f"{c:.1f}")
print(d)
print(e)