import java.util.Scanner;
public class Practice {
public static void main(String[] args) {
//get user input
Scanner user_input = new Scanner(System.in);
System.out.print("Enter a number: " );
int firstNum = user_input.nextInt();
Scanner other_input = new Scanner(System.in);
System.out.print("Enter another number: " );
int secondNum = other_input.nextInt();
//if else statement
if (firstNum >= 10 && firstNum <=20 && secondNum >= 10 && secondNum <= 20) {
System.out.println("true");
} else
System.out.println("false");
}
}