// Program to explain Implicit Conversion ( Automatic Type Conversion )
class ImplicitConversion
{
public static void main( String args[ ] )
{
Int i = 2;
float f = 12.33f;
byte b = 1;
double d = 124.097;
double res = ( i - b ) * ( d / f );System.out.println( " Answer is = " + res );
}
}
Output:Answer is = 10.064639153923036