Закинул ещё мусора с Интеллекта, наверное это последнее

This commit is contained in:
2017-10-07 18:43:57 +03:00
parent 07b1c4e0e1
commit 90f20f9fd0
17 changed files with 732 additions and 33 deletions

6
uts/uts_17_aut_py/4/C.py Normal file
View File

@@ -0,0 +1,6 @@
le, de = list(map(int, input().split()))
de = bin(de)[2:]
if len(de) < le:
de = ('0'*(le - len(de))) + de
print(de)