What is the output of the following code? public class MainClass { public static int myMethod() { System.out.println("Inside myMethod"); } public static void main(String[] args) { myMethod(); } }