You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
260 B

# print(1 + 2/3 + 3 + 4/5 - 7)
x = 2/3
print("10x = ", 10 * x )
print("9x = ", 9*x)
print("10x - 9x = ", 10*x - 9*x)
print("x = ", x)
print("-----------------------------")
y = 4/9
print(y)
print( 10 *y )
print(9*y)
print("-----------------------------")