public class Solution {
    public static class Listener {
  private Listener() { }
        public void onMouseDown(int x, int y) {
            // Do something when the mouse down event occurs
        }
     public void onMouseUp(int x, int y) {
            // Do something when the mouse up event occurs
        }
    }
    public static void main(String[] args) { }
}