using System; public class class1{ static void Main(){ string arg = Console.ReadLine(); int n = Convert.ToInt32(arg); int total = 0; for (int i = 0; i < n;){ total += ++i; } Console.WriteLine(total); } }