a = str(input())
b = int(input())
c = float(input())
c = f"{c:.6f}"
print(" ".join(map(str,[a,b,c])))