fork download
  1. input_x = 2
  2. input_y = 3
  3.  
  4. def func_a(x, y):
  5. if x > y:
  6. x = input_x - input_y
  7. else:
  8. y = input_y - input_x
  9.  
  10. def func_b(x, y):
  11. if x > y:
  12. x = input_x - input_y
  13. print(x, y)
  14. else:
  15. y = input_y - input_x
  16. print(y, x)
  17.  
  18. def func_c(x, y):
  19. if x > y:
  20. print(x, y)
  21. else:
  22. print(y, x)
  23. #0KXRgNGW0L/Rg9C90L7Qsg==
Success #stdin #stdout 0.13s 14156KB
stdin
Standard input is empty
stdout
Standard output is empty