#179. in3050

in3050

Background

Description

Given 2 int values, return true if they are both in the range 30..40 inclusive, or they are both in the range 40..50 inclusive.

Format

Input

Output

Samples

30 31
true
30 41
false
40 50
true

Limitation

1s, 1024KiB for each test case.