using System;
using System.Text;
public class Program
{
public static void Main()
const long N = 3000000;
float af = 0.0f;
double ad = 0.0;
for (var i = 0; i < N; ++i)
var val = (1.0f / 3.0f + 1.0f / 2.0f) * 100f;
af += val;
ad += val;
}
Console.WriteLine($"{af/N} {(float)(ad/N)}");