package hello;
/**
* Created by MR.Papstua on 3/30/2017.
*/
public class Percobaan6 {
public static void main(String[] args) {
int x=0x0001;
int y=0x7fffffff;
int z=0xDeadCafe;
System.out.println("x = " + x);
System.out.println("y = " + y);
System.out.println("z = " + z);
}
}