#125. specialEleven

specialEleven

Background

Description

We'll say a number is special if it is a multiple of 11 or if it is one more than a multiple of 11. Return true if the given non-negative number is special. Use the % "mod" operator -- see Introduction to Mod

Format

Input

Output

Samples

22
true
23
true
24
false

Limitation

1s, 1024KiB for each test case.