class IntToLong{
public static void main(String st[]){
int num = 23;
long l = num;
System.out.println("Converted long : "+l);
}
}
Converted long : 23