class Pair{
    public int first;  
    public int second; 
    public Pair(int first, int second){
        this.first = first;
        this.second = second;
    }
}