In the main method, create a Person object and immediately assign a reference to it to the variable person.
package com.codegym.task.task02.task0202;
/*
Where does a Person come from?
*/
public class Solution {
public static void main(String[] args) {
//write your code here
}
public static class Person {
int age,weight,money;
String name;
//write your code here
}
}