Blame view

P23001_en/S001-AC.cc 317 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str1,str2;
        int count = 1, max = 1;
	cin >> str1;
	while(cin >> str2)
	{
		if(str2 == str1)
		{
			count++;
		}
		else
		{
			count = 0;
		}
		if(count > max)
		{
			max = count;
		}
	}
	cout << max << endl;
        return 0;
}