fork download
  1. # your code goes here
  2. a=5
  3. b=3
  4. c=a/b
  5. print(c)
  6. c=a//b
  7. print(c)
  8. c=a**b
  9. print(c)
Success #stdin #stdout 0.12s 14160KB
stdin
Standard input is empty
stdout
1.6666666666666667
1
125