#include #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; #define all(x) (x).begin(),(x).end() #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()); int main(){ int a,b; cin>>a>>b; vector ans; for(int i=0; i<=a; i++){ for(int j=0; j<=b; j++){ ans.push_back(i*1+j*5); } } sort(all(ans)); UNIQUE(ans); ans.erase(remove(ans.begin(),ans.end(), 0),ans.end()); for(auto x:ans) cout << x << endl; }