Is it divisible by 11?
Easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Determine if the given number is divisible by 11.
Input
The input consists of a single line containing one number.
Output
Output Yes on the first line if the number is divisible by 11; otherwise, print No.
Examples
Input #1
Answer #1
Note
Solutions that use the remainder operator to check divisibility will not be accepted during manual verification.
Submissions 9K
Acceptance rate 26%