/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		table add = new table();
        add.table();
	}
}
class table {

    public void table() {
        addClass add = new addClass();
        add.addClass();
        System.out.println("********************************************************");
        System.out.println("ID \t\t\t NAME");

        if (add.getEmployeeName1() == null) {
            System.out.println("---");
        } else {
            System.out.println("1" + "\t\t\t" + add.getEmployeeName1());
        }
    }
}

class addClass {

    String employeeName;

    public void addClass() {
        Scanner input = new Scanner(System.in);
        System.out.println("****************************************");
        System.out.println("EMPLOYEE SALARY INFORMATION SYSTEM - ADD");
        System.out.println("**************************************** \n");
        System.out.println("Enter ID number (1-10): ");
        int id_number = input.nextInt();
        switch (id_number) {
            case 1:
                System.out.print("Employee Name: ");
                input.nextLine();
                setEmployeeName1(input.nextLine());
                break;
        }
    }

    public void setEmployeeName1(String newEmployeeName1) {
        this.employeeName = newEmployeeName1;
    }

    public String getEmployeeName1() {
        return employeeName;
    }
}