import java.lang.String;
import java.lang.Integer;
import java.lang.Double;  


public class OL   {

    m(x) { return x + x; }
	
    //m(x) { return x || x; } 
	 
	
	}
   
         
public class OLMain {

	main(x) { 
		var ol;
		ol = new OL(); 
		return ol.m(x); 
	}  
}