n=input()print(bin(n).replace("0b", ""))
↧
Answer by dblaze for Convert int to binary string in Python
↧
n=input()print(bin(n).replace("0b", ""))