Advertisement
MisterRain

Untitled

Sep 24th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. from math import floor, ceil, sqrt
  2.  
  3. a = float(input())
  4. a *= 100
  5. a = round(a)
  6. b = a % 10
  7. a //= 10
  8. print(int(a // 10), ' ', int(a % 10), int(b), sep='')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement