public static void main(String[] args) {
        //write your code here
        Person Person = new Person();
    }

    public static class Person {
        //write your code here
        String name;
        int age;
        int weight;
        int money;
    }
}