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

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