using System;
public class Program
{
public static void Main()
// declare and define the x variable using a float type so the program prints the result: 3.4
float x = 1.36f;
Console.WriteLine(x * 2.5f);
}