Files
codeforces/cpp/282A.cpp
T
2023-03-02 20:58:03 +07:00

26 lines
347 B
C++

#include <iostream>
#include <string>
using namespace std;
int main()
{
int n, x = 0;
cin >> n;
while (n--)
{
string s;
cin >> s;
if (s.find("++") != -1)
{
x++;
}
if (s.find("--") != -1)
{
x--;
}
}
cout << x << endl;
return 0;
}