import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		List<Student> students = Arrays.asList(
    		new Student("Joe", 65),
    		new Student("Mark", 80),
    		new Student("Louis", 79),
    		new Student("Juan", 21));
	}
	
	private static class Student {
		String name;
		int score;

		public Student(String name, int score) {
			this.name = name;
			this.score = score;
		}
	}
}