eolymp
bolt
Try our new interface for solving problems
Problems

Is it divisible by 5 and 10?

Is it divisible by 5 and 10?

One number is given. Find, is it divisible by 5 and by 10.

Input

One number that contains no more than 1000 digits.

Output

In the first line print Yes if it is divisible by 5, otherwise print No. In the second line print Yes if it is divisible by 10, otherwise print No.

Time limit 1 second
Memory limit 128 MiB
Input example #1
17
Output example #1
No
No
Input example #2
915
Output example #2
Yes
No