5 lines
59 B
Python
5 lines
59 B
Python
|
while True:
|
||
|
r = int(input(">"),2)
|
||
|
print("%X" % r)
|
||
|
|