#include <bits/stdc++.h> using namespace std; int main() { int n=0; cin >> n; int sum = 0; for (int i = 1; i <= n; i++) { if (i % 3 == 0 || i % 5 == 0) { sum += i; } } cout << sum << endl; return 0; }

0 comments

No comments so far...