mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
2.0 KiB
2.0 KiB
In [1]:
x = 2.0
y = 5.0In [2]:
addition = x + y
multiply = x * yIn [3]:
print("Addition: " + str(addition))
print("Multiplication: " + str(multiply))