using System;
public class Program
{
public static void Main()
int n;
Console.WriteLine("Nhap n: ");
n = int.Parse(Console.ReadLine());
int k = 1;
int tong = k;
while (tong < n)
tong += k;
if (tong < n)
k++;
}
Console.WriteLine(k);