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
2022-05-18 08:42:07
#include<stdio.h>
int main()
{
int a;
scanf("%d",&a);
if (a<5)
{
printf("YES");
}
else
{
printf("NO");
}

return 0;
}
2022-04-21 09:24:41
ez suguudaa uursduu hiigeerei
2022-01-07 05:18:35
bodoj chadahgui bol uil
khatnaagaas c++

#include <iostream>

using namespace std;

int main()
{
int a;
cin >> a;

if (a <5){
cout << "YES";
}
else {
cout << "NO";
}




return 0;
}

2021-01-13 04:28:38
#include<iostream>
using namespace std;
int main ()
{
int a;
cin>>a;
if(a>5){
cout<<"NO"<<endl;
}
if(a<5){
cout<<"YES"<<endl;
}
return 0;
}
mai suguudaa
2019-11-21 12:33:10
uwu
2019-11-14 08:49:21
fuck you niggas
you should all burn in hell



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.