public class Convert1 {
  public static void main(String args[]) {

	int smallerType = 2;
	
	double largerType = smallerType;
	
	System.out.println(largerType);
    }
}