St Andrews Online Judge

Long Floating Number

By Kay Akashi

Time: 2000 ms
Memory: 256000 kB

The code judging system is only available during contests. Check out the github repo for test cases and solutions.

Please log in.

Problem Statement

Given a positive decimal NN, judge whether NN is smaller than, equal to, or larger than 11.

Note that, NN may contain trailing zeros (e.g. N=1.4040000000N = 1.4040000000).

Constraints

0N<20 \leq N \lt 2.

Input

The first line of input is a single floating value, NN. NN is given with as many as 10001000 decimal places.

Output

If N<1N \lt 1, output "smaller". If N=1N = 1, output "equal". If 1<N1 \lt N, output "larger".

Examples

Input

1.925

Output

larger

Input

0.000000000000000000003

Output

smaller

Input

1.00000

Output

equal