using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace _100的奇数
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 0;
            for (int i = 1; i <= 50; i++)
            {
                a += (2 * i - 1);
            }
            Console.WriteLine(a);
        }
    }
}