#127. old35

old35

Background

Description

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

Format

Input

Output

Samples

3
true
10
true
15
false

Limitation

1s, 1024KiB for each test case.