// Arup Guha
// 8/24/2026
// Example program to print something out in Java - Also Program 1A Sample Solution

// All the build in classes we will use come from the util package.
import java.util.*;

// In Java, everything is in classes. Each file can have at most one public class.
// We'll discuss what public means later...
public class band {

	// This is how you define a main method inside of a class. This is the
	// method that automatically gets interpreted when you run the class.
	public static void main(String[] args) {
	
		// Write code here!
		System.out.println("My favorite band is Pearl Jam!");

		// Some other bands.
		System.out.println("But currently I probably listen to Taylor Swift and Ed Sheeran more often.");
	}

}
