mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 14:11:38 +00:00
25 lines
301 B
C++
25 lines
301 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int n;
|
|
cin >> n;
|
|
int count = 1;
|
|
int a;
|
|
cin >> a;
|
|
while (--n)
|
|
{
|
|
int b;
|
|
cin >> b;
|
|
if (b != a)
|
|
{
|
|
count++;
|
|
a = b;
|
|
}
|
|
}
|
|
cout << count;
|
|
return 0;
|
|
}
|