Guest User

Untitled

a guest
Dec 22nd, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1.     import java.io.*;
  2.     import java.util.*;
  3.     import java.math.*;
  4.      
  5.     class Likecs
  6.     {
  7.         public static void main(String[] args) throws Exception
  8.         {
  9.             for (int i=0; i<128; ++i)
  10.             {
  11.                 System.out.println(~i);
  12.                 System.out.println(1<<~i);
  13.                 System.out.println();
  14.             }
  15.         }
  16.     }
Add Comment
Please, Sign In to add comment