Algorithm
Code Examples
#1 Code Example with C++ Programming
Code -
C++ Programming
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define debug(n) cout<<(n)<<endl;
const ll INF = 2e18 + 99;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m, k;
cingt;gt;ngt;gt;mgt;gt;k;
(n < = min(m, k)) ? cout<<"Yes"<<endl : cout<<"No"<<endl;
}
Copy The Code &
Try With Live Editor
Input
5 8 6
Output
Yes
Demonstration
Codeforcess 1186-A A. Vus the Cossack and a Contest C++, Java, Js and Python,1186-A,Codeforcess solution