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