import java.util.*;

interface test1
{
    void lowestnumbers (int i, int j);
    
}

public class Main
{
    static int i=4;
    static int j=5;
    
    public static void main(String[] args) 
    {
        System.out.println("Welcome to Online IDE!! Happy Coding :)");
        
        test1 ln = (i,j) -> { 
            
        System.out.println("Inside here");
        
        if (i<j)  
        {
            System.out.println("i is less than j"); 
        } 
                            };
    
        test t = new test();
    
        t.checkmax(i,j,ln);
    }
}

    class test
{
    
    public void checkmax (int k, int l, test1 t1)
    {
        t1.lowestnumbers(k,l);
    }
}