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

RGB7120 - Гурвалжин эсэх

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

Input

Нэг мөрөнд 3 натурал тоо зайгаар тусгаарлагдан өгөгдөнө.

Output

Гурвалжин байгуулж болох бол YES үгүй бол NO.

Example

Input:
3 4 5
Output:
YES

Нэмсэн:Bataa
Огноо:2011-06-21
Хугацааны хязгаарлалт:0.203s
Эх кодын хэмжээний хязгаарлалт: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
2023-11-18 12:55:55
how do u understand the instruction? pls help me explain
2023-10-09 12:08:03
tf
2023-04-23 04:49:07
#include <iostream>
using namespace std;

int main() {
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if (a + b > c && b + c > a && a + c > b){
printf("YES");
}
else printf("NO");
return 0;
}
huul2
2023-03-14 05:00:18
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

int main() {
string s1, s2, s3;
cin >> s1 >> s2 >> s3;
s1 += s2;
sort(s1.begin(), s1.end());
sort(s3.begin(), s3.end());
if (s1 == s3) {
cout << "YES\n";
} else {
cout << "NO\n";
}
return 0;
}
suguudaa huultsgaaa
2023-03-13 09:08:08
hi ryo bn.uguulberiig ni oilgodgue gsh
2023-02-23 11:07:07
uguulbariin oilgodogguiee lol
2023-01-23 05:06:40
#include <stdio.h>
#include<climits>
using namespace std;
int main() {
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if (a + b > c && b + c > a && a + c > b){
printf("YES");
}
else printf("NO");
return 0;
}
stdio.h deer bichsen shuu huulaarai Chishiya
2023-01-11 14:13:09
k bye




































































































































































































































































































































































































































































































































































































































































































































2022-12-07 10:36:30
#include<stdio.h>
main(){
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if(a+b>c && a+c>b && b+c>a){
printf("YES");
}
else printf("NO");
}
//huultsgaa suguda
2022-11-28 12:30:29
Zulaa taniltsay :D
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.