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.|

RGB7112 - 10-аас их

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

Input

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

Output

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

Example

Input:
11

Output:
YES

Нэмсэн:Bataa
Огноо:2011-05-31
Хугацааны хязгаарлалт:0.208s
Эх кодын хэмжээний хязгаарлалт: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-03-31 09:35:38
#include <iostream>
using namespace std;

int main () {
int a;
cin >> a;
if (a>10) printf("YES");
else if (a<10) printf("NO");
return 0;
}
2022-03-17 19:11:45
bolkueeeen
2022-01-07 05:12:36
eniiig hiij chadahgui bol uil
khatnaagaas c++
#include <iostream>

using namespace std;

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

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




return 0;
}
2021-06-18 14:13:28
#include <stdio.h>
int a;
int main()
{
scanf("%d",&a);
if (a>10)
printf("YES");
else printf("NO");
return 0;
}
ez
2021-06-13 07:32:19
package bodlogo10;
import java.util.Scanner;

public class RGB7112 {
public static void main(String[] args) {

Scanner in = new Scanner(System.in);
int a = in.nextInt();

if(a>10) {
System.out.println("Yes");
}
else{
System.out.println("No");
}
}

}
Java dr
2021-05-24 10:30:46
#include <iostream>
using namespace std;

int main() {

// your code here
int a;
cin >>a;
if (a>10)
cout << "YES";
else cout << "No";






return 0;
}
2021-03-22 12:12:30
#include <iostream>
using namespace std;
main() {
int a;
cin>>a;
if(a>10){
cout<<"Yes"<<endl;
}
if(a<10){
cout<<"No"<<endl;
}
return 0;
}
2020-10-23 03:17:07
#include <iostream>
using namespace std;
main() {
int a;
cin>>a;
if(a>10){
cout<<"Yes"<<endl;
}
if(a<10){
cout<<"No"<<endl;
}
return 0;
}
2020-10-23 03:14:28
#include <iostream>
using namespace std;

int main() {
int a;
cin>>a;
if(a>10){
cout<<"Yes"<<endl;
}
if(a<10){
cout<<"No"<<endl;
}
return 0;
}
2020-10-03 05:16:05
tuvshuu hariu n ene bn
#include<bits/stdc++.h>
using namespace std;
int main(){
int x;
scanf("%d",&x);
if(x>10){
printf("YES");
}else{
printf("NO");
}
}
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.