package com.codegym.task.task02.task0202;

/*
Where does a Person come from?

*/
public class Solution {
    public static void main(String[] args) {
       String ball = "round"; //write your code here
    }

    public static class Person {
        String name = "aryan";//write your code here
        int weight = 57;
        int age = 15;
        int money = 500;
    }
}