import java.lang.reflect.Method;

public class RefSample1 {

	public static void main(String[] args) throws Exception{
		
		Gal gal = new Gal();
		int count = gal.play();
		System.out.println(count);
	}
}
