Odd/Even Strings

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Consider a string containing lowercase letters only. We call the string odd if every letter in the string appears an odd number of times. Similarly, we call the string even if every letter in the string appears an even number of times.

Given a string, determine if it is odd or even.

입력

There is only one input line; it contains a string of lowercase letters only. The string will contain 1 to 60 letters (inclusive).

출력

Print 0 (zero) if the string is even, 1 (one) if the string is odd, and 0/1 (zero and one with a slash in between) if it is neither.