import std.algorithm, std.conv, std.range, std.stdio, std.string; import std.container; // SList, DList, BinaryHeap import std.typecons; // Tuple, Nullable, BigFlags import std.math; // math functions import std.numeric; // gcd, fft import std.bigint; // BigInt import std.random; // random import std.bitmanip; // BitArray import core.bitop; // bit operation import std.regex; // RegEx import std.uni; // unicode void main() { auto rd = readln.split.to!(int[]), a = rd[0], b = rd[1]; int[] r; foreach (i; 0..a+1) foreach (j; 0..b+1) r ~= i + j * 5; r = r.sort().uniq.array; foreach (ri; r[1..$]) writeln(ri); }