fork(1) download
  1. # your code goes here
  2. num = 3
  3.  
  4. dezena = num // 10
  5. unidade = num % 10
  6. print(unidade * 10 + dezena)
  7.  
Success #stdin #stdout 0.02s 9308KB
stdin
Standard input is empty
stdout
30