/**
* This is the first homework of course 08671.
* @auther Leo Yi
* @version 1
* First Name: Liangchen
* Last Name: Yi
* Andrew ID: liangchy
*/
public class HelloYum {
/**
* Print my information.
* @param args The input arguments.
*/
public static void main(String[] args) {
System.out.println("Andrew ID: liangchy");
System.out.println("First Name: Liangchen");
System.out.println("Last Name: Yi");
System.out.println("Favorite Restaurant: Little Asia");
System.out.println("Best Dish: kung pao chicken");
}
}