#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int a, b; cin >> a >> b; set st; for(int i = 0; i <= b; i++) { int x = i * 5; for(int j = 0; j <= a; j++) { if(x + j == 0) continue; if(st.count(x + j)) continue; cout << x + j << endl; st.insert(x + j); } } return 0; }