// Arup Guha
// 8/24/2026
// Example program to print something out in Java

// 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 MyFavoriteBand {

	// 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.print("My favorite band is Pearl Jam!");
		
		// After a println the next print will be on the next line.
		System.out.print("Eddie Vedder is their lead singer.");
		
		// This will appear on the same line as the previous sentence.
		System.out.println("He has a distinctive voice.");
		
		// Escape sequences.
		System.out.print("This is a tab:\t, this is a double quote: \" and this is a newline:\n");
	
		// On a new line since we did \n
		System.out.println("On a new line.");
		
		// String concatenation for printing.
		System.out.println("We are adding "+"two strings here.");
		
		// What does this do?
		System.out.println("We are adding "+(5+6));
		
		// And tihs?
		System.out.println(5.2+6+"We are adding ");
	}

}