using System;
public class Program
{
public static void Main()
int a = (int) ((0.1+0.7) * 10);
Console.WriteLine("Uitkomst:" + a);
}