50
<class 'int'>
x = 5
y = 10
z = x * y
print(z)
print(type(z))
3.0
<class 'float'>
2.25
<class 'float'>
a = 9
b = 3
c = 4
x = a / b
print(x)
print(type(x))
print()
y = a / c
print(y)
print(type(y))
7.0
<class 'float'>
a = 2.5
b = 4.5
c = a + b
print(c)
print(type(c))
3.0
<class 'float'>
a = 5
b = 2.0
c = a - b
print(c)
print(type(c))