#include <stdio.h> int main (void) { int num,n=31; scanf("%i",&num); while(n>=0) { printf ("%i",(num>>n)&0x01); n--; } printf ("\n"); return 0; }