fork download
  1. # your code goes here
  2.  
  3. n1 = input('Digite: ')
  4. n2 = input('Digite 2: ')
  5.  
  6. div = float(n1) / float(n2)
  7. print(div)
Success #stdin #stdout 0.02s 9172KB
stdin
4
2
stdout
Digite: Digite 2: 2.0