public class Student {
  public String name="Nomi nama", dorm="Dortmouth";
  public int gradYear=2019, room=123;
  public float GPA=3.00f;
  
  
  Student(String name, int cls, String dorm, int room, float GPA) {
    this.name = name;
    gradYear = cls;
    this.dorm = dorm;
    this.room = room;
    this.GPA = GPA;
  }// constructor
  
  Student() {
  }// constructor
  
  public String toString() {
    String out="";
    out += "Name: " + name + "\n";
    out += "Class: " + gradYear + "\n";
    out += "Dorm: " + dorm + "\n";
    out += "Room: " + room + "\n";
    out += "GPA: " + GPA + "\n";
    return out;
  }// toString()
  
  public static void main(String[] args) {
    Student s = new Student();
    System.out.println(s);
    
    Student s2= new Student("Charlie Shen", 2018, "LaSalle Hall", 409, 3.85f);
    System.out.println(s2);
  }// main()
  
}// Student