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

21 lines
264 B
C++

#include <iostream>
using namespace std;
int main()
{
int n, h, l = 0;
cin >> n >> h;
for (int i = 0; i < n; i++)
{
int t;
cin >> t;
if (t > h)
{
l++;
}
}
cout << l + n;
return 0;
}