eolymp
bolt
Try our new interface for solving problems
Problems

Is it divisible by 5 and 10?

Is it divisible by 5 and 10?

Time limit 1 second
Memory limit 128 MiB

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

Input data

One number that contains no more than 1000 digits.

Output data

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.

Examples

Input example #1
17
Output example #1
No
No
Input example #2
915
Output example #2
Yes
No