a, b, c = 2, 3, 6
d = a + b * c/b
print(d)
# Output
8.0
Floating point because c/b will be a float even though c and b are integers
a, b, c = 2, 3, 6
d = a + b * c/b
print(d)
# Output
8.0
Floating point because c/b will be a float even though c and b are integers