mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 10:12:55 +00:00
20 lines
251 B
C#
20 lines
251 B
C#
using System;
|
|
|
|
namespace problem_4A
|
|
{
|
|
class problem_4A
|
|
{
|
|
static void Main()
|
|
{
|
|
int n = int.Parse(Console.ReadLine());
|
|
if (n > 2 && n%2 == 0)
|
|
{
|
|
Console.Write("YES");
|
|
}
|
|
else
|
|
{
|
|
Console.Write("NO");
|
|
}
|
|
}
|
|
}
|
|
} |