public class Immutables
{
	public static void main(String[] args)
	{
		String s = "hello";
		String t = s;
		s = s.toUpperCase();
		System.out.println(s==t);
	}
}