시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB27522921286.531%

문제

The historical battle between numbers and strings has taken a new twist: numbers are bragging on their categorization of being “even” or “odd” and strings lacking such feature. But don’t count strings out yet!

A string is considered “even” if every letter in the string appears an even number of times; the string is “odd” if every letter in the string appears an odd number of times.

Given a string, determine whether the string is even, odd, or neither.

입력

The input consists of a single line, starting in column 1, not exceeding column 70, and containing only the lowercase letters (at least one letter).

출력

The output consists of a single integer: print 0 (zero) if the string is even, 1 (one) if the string is odd, or 2 if the string is not even and is not odd (i.e., it is neither).

예제 입력 1

coachessoaehwwwwww

예제 출력 1

0

예제 입력 2

coachesarefun

예제 출력 2

2

예제 입력 3

coachesc

예제 출력 3

1