class Demo2 {
public static void main(String[] args) {
byte a = 50;
System.out.println(a);
//byte b = 200;
//System.out.println(b);
short c = 288;
System.out.println(c);
int d = 9699;
System.out.println(d);
long e = 888888;
System.out.println(e);
float f = 3.14f;
System.out.println(f);
double g = 3.1415926;
System.out.println(g);
char h = 'a';
System.out.println(h);
boolean i = false;
System.out.println(i);
boolean j = true;
System.out.println(j);
}
}