using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
           //white循环

            int i = 1;
            int total = 0;
            while (i <= 100)
            {
                total += i;
                i++;
            }
            Console.WriteLine(total);
            long t = 0;
            while (true)
            {
                Console.WriteLine(t++);
            }

            Console.ReadKey();
        }
    }
}