alternant

Time limit: 1s Memory limit: 64MB Input: Output:

Task

We say that a natural number is alternating if even digits alternate with odd digits. For example, the numbers 236,6,12345678236, 6, 12345678 are alternating.

Given a natural number nn, verify whether it is alternating or not.

Input data

The program reads the number nn from the keyboard.

Output data

The program will print da (yes in Romanian) if nn is alternating or nu (no in Romanian) if it is not alternating.

Constraints and clarifications

  • 0n10150 \leq n \leq 10^{15};

Example 1

stdin

785

stdout

da

Log in or sign up to be able to send submissions!