1
2
3
4
5
6
import Data.List
import Control.Arrow

main = getContents >>= print . freq

freq = map (head &&& length) . group . sort