package nb;
public class nb {
public class inner{
public void prin(){
System.out.println("welcom to immoc");
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
nb hello = new nb();
inner f = hello.new inner();
f.prin();
}
}