public class Hello { public static void main(String[] args) { hello(5); } static void hello(int n) { System.out.println("Здравствуй, мир!"); System.out.printf("Argument: %d", n); } }