mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 16:13:53 +00:00
21 lines
264 B
C++
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;
|
|
}
|