// x is defined as a variable of String type
	String x = "Hello";
 
// y is defined as a variable of int type
	int y = 5;
		
// The value of the variables are printed to the console 
	println(x);
	println(y);