public class Main{ public static void main(String[] args){ int n = 10 ; for(int k = 3 ; k>=0 ; k--){ System.out.print((n>>k)&1); } } }