maissiuk

2_3

Dec 13th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. a = input ('Input number...')
  2. a = float (a)
  3. b = input ('Input number...')
  4. b = float(b)
  5. c = int (a//b)
  6. print (c)
  7. d = float (a/b)
  8. print (d)
Add Comment
Please, Sign In to add comment