Question

Write a function to check if a number is zero without using ==, !=, or comparison operators?

Login to Submit

Examples

Input: 17
Output: false

Input: 19
Output: false

Input: 0
Output: true