Problem hidden
|This problem was hidden by Editorial Board member probably because it has incorrect language|version or invalid test data, or description of the problem is not clear.|

RGB7113 - 5-аас бага

Өгөгдсөн тоо 5-аас бага бол  YES үгүй бол NO гэж хэвлэ.

Input

Int төрлийн нэг тоо өгөгдөнө.

Output

YES эсвэл NO гэж хэвлэгдэнэ.

Example

Input:
4
Output:
YES

Нэмсэн:Bataa
Огноо:2011-05-31
Хугацааны хязгаарлалт:1s
Эх кодын хэмжээний хязгаарлалт:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Програмчлалын хэлүүд:ADA95 ASM32 BASH BF C NCSHARP CSHARP C++ 4.3.2 CPP C99 CLPS LISP sbcl LISP clisp D ERL FORTRAN HASK ICON ICK JAVA JS-RHINO JULIA LUA NEM NICE OCAML PAS-GPC PAS-FPC PERL PHP PIKE PRLG-swi PYTHON PYPY3 PYTHON3 RUBY SCALA SCM guile ST TCL WHITESPACE

hide comments
2019-10-21 06:19:40
#include<stdio.h>
main(){
int a,b,c,d,e,f,g,h,i,j;
scanf("%d",&a);
if(a<5){
printf("YES");
}
else{
printf("NO");
}
}
2019-03-25 04:45:52
#include <iostream>
using namespace std;
main()
{
int a, yes, no;
cin>>a;
if (a<5)
cout<<("yes");
else
cout<<("no");
}
2019-01-08 07:35:22
#include<bits/stdc++.h>
int main (){
int a;
scanf("%d",&a);
if(a<5)
printf("YES");
else
printf("NO");
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.