package task07;

public class StaticAndNonStatic {
	
	static int x=77;
	
	final int y=4711;

	// get_x returns the value of static field x
	
	public static int get_x() {
		// COMPLETE THIS METHOD

	}
	
	// get_x returns the value of non-static field y
	// 
	
	public static int get_y() {
		// COMPLETE THIS METHOD

	}

}
