class InheritanceTest {
	public static void main(String[] args) {

		SubClass sub = new SubClass(5);

		System.out.println(sub.getField1());
	}
}
