#46. or35

or35

Background

Description

Return true if the given non-negative number is a multiple of 3 or a multiple of 5. Use the % "mod" operator -- see Introduction to Mod

Format

Input

Output

Samples

3
true
10
true
8
false

Limitation

1s, 1024KiB for each test case.