using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dmg
{
class Program
{
static void Main(string[] args)
{
int tek = 0;
int cift = 0;
int i,sayi;
float oran;
for(i = 1; i <= 20;i++)
{
Console.Write(i + ".sayıyı Giriniz = ");
sayi = Convert.ToInt32( Console.ReadLine() );
if( sayi % 2 == 0 )
{
cift = cift + sayi;
}
else
{
tek = tek + sayi;
}
}
oran = cift / tek;
Console.WriteLine("Oran = " + oran);
Console.ReadLine();
}
}
}