public class InOutExample{
public static void main (String[] argv){
  String lastName = "";                           // this variable is used to store the last name
  Out.println("Geben Sie Ihren Nachnamen ein: "); 
  lastName=In.readLine();                         // input the last name

  // todo: read the first name, the id and the subject of the student
  //       and print it to the screen.



  }
}


