#28956: Java 直接轉 0難度


gccso3 (gccso3)




import
java.util.Scanner;

public class a034 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNext()){
System.out.println(Integer.toBinaryString(Integer.parseInt(sc.nextLine())));
}
}
}