using System;
public class Program {
public static void Main() {
double x = 0.0d;
for (var i = 0; i < 1000; i++) {
x += 0.1d;
}
Console.WriteLine(x);