using System; using System.Collections; using System.Collections.Generic; class Program { static void Main(string[] args) { //入力 string s = Console.ReadLine(); string[] t = s.Split(' '); int A = int.Parse(t[0]); int B = int.Parse(t[1]); //答えになるList List list = new List { }; //全パターンについて試していく for (int x5 = 0; x5 <= B; x5++) { for (int x1 = 0; x1 <= A; x1++) { int value = 5 * x5 + 1 * x1; if (!list.Contains(value)) { list.Add(value); } } } //リストから0を削除する list.Remove(0); //リストを並び替え list.Sort(); //出力 foreach(int l in list) { Console.WriteLine(l); } } }