/*
Online Java - IDE, Code Editor, Compiler

Online Java is a quick and easy tool that helps you to build, compile, test your programs online.
*/

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 :)");
        
        List <test> aa = new ArrayList<>();
    
    test1 ln = (i,j) -> { System.out.println("Inside here"); if (i<j)  { System.out.println("less"); } 
    
    
    };
    
    test t = new test();
    
    t.checkmax(i,j,ln);
        
        
        
        
//        aa.add (new test(33,"sdadsa"));
    }
}

class test
{
    
    public void checkmax (int k, int l, test1 t1)
    {
        t1.lowestnumbers(k,l);
}
}