#include using namespace std; int main() { res = 0; for (int i = 10; i > 0; i--) { if (i % 3 == 0 || i % 5) { res += i; } } cout << res << endl; }