mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 10:12:55 +00:00
19 lines
311 B
C++
19 lines
311 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
int k, l, m, n, d, count = 0;
|
|
cin >> k >> l >> m >> n >> d;
|
|
for (int i = 1; i <= d; i++)
|
|
{
|
|
if ((i%k == 0) || (i%l == 0) || (i%m == 0) || (i%n == 0))
|
|
{
|
|
count++;
|
|
}
|
|
}
|
|
cout << count;
|
|
return 0;
|
|
}
|