public class Method2 { static void person(int age){ System.out.println("I am " + age + " years old"); } public static void main(String[] args) { person(12);//calling a method person(16);//calling it again person(47);//calling it one more time } }