3. Following code has an expression with all integer values. Why is the result in floating point form ?

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