using System;
public class Program
{
public static void Main()
float x = 10f / 3f;
Console.WriteLine((x * 3f).ToString("O"));
}