
public class EsempioReturn {
    

    public static void main(String[] args){
	System.out.println(happy());
    }
    
    static String happy(){
	if (true) return "I'm happy!!";
	// else return "I'm not happy!";
    }
}
