using System;
public class Program
{
public static void Main()
int x = 0;
for (int i = 1; i < 101; i++)
x+=i;
Console.WriteLine(x);
}