public class Solution { public static void main(String[] args) throws Exception { //write your code here BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String s = br.readLine(); int n = Integer.parseInt(s); int age = br.readLine(); int a = Integer.parseInt(age); if(a<18) { System.out.println("Grow up a little more"); } } }