import java.util.*;
public class NumberToBinary {
static Scanner scanner = new Scanner(System.in);
public static void main(String args[]) {
/* Procedure to convert Integer to Binary by divide it by 2 keeping notice of the quotient and the remainder. Continue dividing the quotient by 2 until you get a quotient of zero. Then just write out the remainders in the reverse order. */
int Input = 0;
int Quotient = 0;
int Remainder = 0;
String Binary = "";
Input = scanner.nextInt();
while (Input != 0) {
Quotient = Input / 2;
Remainder = Input % 2;
Binary = "" + Remainder + Binary;
Input = Quotient;
}
System.out.println("Your number " + Input + " is " + Binary + " in Binary.");
}
}