題目a034: 二進位制轉換https://zerojudge.tw/ShowProblem?problemid=a034解答123from sys import stdinfor _ in map(int,stdin): print(format(_,"b"))