package com.inmind.final01; public class Student { String name; int age; public Student(String name, int age) { this.name = name; this.age = age; } }