class Variables {
  public static void main(String [] args) {
     byte b=32;
     char c='@';
     int i=5;
     long l=50000;
     float f=2.18f;
     double d=3.14159;
     boolean e=true;
     System.out.println(""+b+" "+c+" "+i+" "+l+" "+
	f+" "+d+" "+e);
  }
}