using System;
using System.Diagnostics;
public class Program
{
public void TestFunction()
}
public static void Main()
int i = 0;
Stopwatch sw = new();
sw.Restart();
while(sw.ElapsedMilliseconds < 1000) i++;
Console.WriteLine(i);