using System; using System.Collections.Generic; using System.Text; namespace DPなすごろく { class Program { static void Main(string[] args) { var str0 = int.Parse(Console.ReadLine()); long[] koma = new long[str0 + 1]; // ini koma[1] = 1; koma[2] = 2; // dp model for (int i = 3; i