using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        var N = int.Parse(ReadLine());
        System.Diagnostics.Debug.Assert(1 <= N && N <= 1000);

        WriteLine("Yes");
    }
}