public class number{
public static void main(String args[]){
byte x1=127;
int x2=12345;
long x3=123456789L;
float x4=1.23e-5f;
double x5=1.4567e3;
System.out.print("x1="+x1+"x2="+x2+"x3="+x3
+"x4="+x4+"x5="+x5);
}
}
public static void main(String args[]){
byte x1=127;
int x2=12345;
long x3=123456789L;
float x4=1.23e-5f;
double x5=1.4567e3;
System.out.print("x1="+x1+"x2="+x2+"x3="+x3
+"x4="+x4+"x5="+x5);
}
}