判断是否为大于2的偶数即可。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _4A
{
class Program
{
static void Main(string[] args)
{
int w = Convert.ToInt32(Console.ReadLine());
if (w > 2 && w % 2 == 0)
{
Console.WriteLine("YES");
}
else
{
Console.WriteLine("NO");
}
}
}
}