public class SimpleMethod { // Put your method code here private static void square(int input) { System.out.println(input * input); } public static void main(String[] args) { // This is the method call, create the square method. square(25); } }