Run ID:127032

提交时间:2025-07-23 15:44:32

#include <bits/stdc++.h> using namespace std; int main() { int m, n ; cin >> n >>m ; for (int i = 1; i <= n; i++) { if ( i % m == 0) { cout << i << " "; } } return 0; }