using System;
public class Program
{
public static void Main()
double tong, x, y, v;
long gt;
Console.WriteLine("Nhập vào giá trị x:");
x = double.Parse(Console.ReadLine());
tong = 1;
for(int i=1; i<=5; i++)
y = Math.Pow(-1,i)*Math.Pow(x,2*i);
gt = 1;
for(int j=1; j<=2*i; j++)
gt = gt * j;
}
v = y/gt;
tong = tong + v;
Console.WriteLine("Tong day so: {0}",tong);