You are given a grid of letters. Your task is to calculate the number of rectangle subgrids that contain all the letters.
The first line has two integers $n$ and $k$ : the size of the grid and the number of letters. The letters are the first $k$ uppercase letters.
After this, there are $n$ lines that describe the grid. Each line has $n$ letters.
Print the number of subgrids.