시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 1024 MB30024622282.528%

문제

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.

예제 입력 1

geekkeeg

예제 출력 1

0

예제 입력 2

funnyn

예제 출력 2

1

예제 입력 3

zztop

예제 출력 3

0/1