igorich1376

x10---x2

Nov 14th, 2024
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. def to_bin(x):
  2.     a = bin(x)[2:]
  3.     return print(a)
  4.  
  5. n = int(input())
  6. to_bin(n)
Advertisement
Add Comment
Please, Sign In to add comment