x = 3490
y = 3.14159

print(f"x is    {float(x):7.2f}")
print(f"y is    {y:7.2f}")
print(f"x + y = {x + y:7.2f}")
