class Person {
    String name;

    // Constructor
    Person(String name) {
        this.name = name;
    }
}