import java.util.*;
import java.lang.*;
import java.io.*;

class Test
{
	int eat() { return 1; }
}

class TestChild extends Test
{
	void eat(int apples) {}
}

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		TestChild tc = new TestChild();
		int n = tc.eat();
	}
}