int and float



examples/basics/int_float.py
x = 2
y = 3.14

print(x + 1.5)
print(y + 1)

3.5
4.140000000000001