using System;
public class Program
{
public static void Main()
float a = 10.6F;
int b = 73;
var c = a + b;
Console.WriteLine($"Type = '{c.GetType()}' with value = {c}");
}