using System.Collections.Generic; using System; using System.Linq; using System.Drawing; namespace yukicoder { class Program { static void Main(string[] args) { var X = int.Parse(Console.ReadLine()); List list = new List(); for(int i = 0; i < X; i++) { list.Add(i); } int count = 0; for(int j = 0; j < list.Count - 1; j++) { for(int k = 1 + j ; k < j + 2 ; k++) { count++; } } Console.WriteLine(count); } } }