//declaring class
class Employee
{
int emp_id;
String name;
}
public class Main
{
public static void main(String args[])
{
//make instance of Employee class through refrence
Employee e1 = new Employee();
e1.emp_id = 1234;
e1.name = "Raj";
System.out.println(e1.name + "\'s employee id is " + e1.emp_id);
}
}