using System;
using System.Collections.Generic;
using System.Text;
namespace testo
{
class Program
{
static void Main(string[] args)
{
double y = 3/6;
System.Console.WriteLine(y);
}
}
}
double y = 3.0 / 6.0;
System.Console.WriteLine(y);