/*
Online Java - IDE, Code Editor, Compiler

Online Java is a quick and easy tool that helps you to build, compile, test your programs online.
*/

import java.util.*;

public class Main 
{
    public static void main(String[] args) 
    {
        System.out.println("Welcome to Online IDE!! Happy Coding :)");
        
        Person person1 = new Person("Amit");
        Person person2 = new Person("Max");
    }
}

class Person <S>
{
    private S name;
    
    public Person(S name)
    {
        this.name=name;
    }
}