Problem N: CCC18J2 Occupy parking

Problem N: CCC18J2 Occupy parking

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 23  Solved: 16
[Submit] [Status] [Web Board] [Creator:]

Description

You supervise a small parking lot which has N parking spaces.

Yesterday, you recorded which parking spaces were occupied by cars and which were empty.

Today, you recorded the same information.

How many of the parking spaces were occupied both yesterday and today?

Input

The first line of input contains the integer N (1≤N≤100)(1≤N≤100).
The second and third lines of input contain N characters each. 
The second line of input records the information about yesterday’s parking spaces, 
and the third line of input records the information about today’s parking spaces. 
Each of these 2N characters will either be C to indicate an occupied space or . 
to indicate it was an empty parking space.

Output

Output the number of parking spaces which were occupied yesterday and today.

Sample Input Copy

5
CC..C
.CC..

Sample Output Copy

1

HINT

Only the second parking space from the left was occupied yesterday and today.