using System; namespace yukicoder { class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); int b = 0; int i; if (1 <= N && N <= 100) { for(i = 1; i <= N; i++) { b += i; } Console.WriteLine(b); } } } }