public static void main(String args[])
{
  String s="1we12";
  try{
    int n = Integer.parseInt(s);
    System.out.println("Yes");
  }catch(Exception e){
    System.out.print("NO");
  }}