시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB30824923081.560%

문제

You are given a five-card hand drawn from a standard 52-card deck. The strength of your hand is the maximum value k such that there are k cards in your hand that have the same rank.

Compute the strength of your hand.

입력

The input will consist of a single line, with five two-character strings separated by spaces.

The first character in each string will be the rank of the card, and will be one of A23456789TJQK. The second character in the string will be the suit of the card, and will be one of CDHS.

You may assume all the strings are distinct.

출력

Output, on a single line, the strength of your hand.

예제 입력 1

AC AD AH AS KD

예제 출력 1

4

예제 입력 2

2C 4D 4H 2D 2H

예제 출력 2

3

예제 입력 3

AH 2H 3H 4H 5H

예제 출력 3

1