class Hello {

	public static void main(String[] args) {

		String a = new String("This is a test ßß");
		System.out.println(a.toUpperCase());

	}

}
