implementation *800

Please click on ads to support us..

Python Code:

if __name__ == '__main__':
    x = input().split()
    a = [int(i) for i in x]
    if a[0] <= a[1] and a[0] <= a[2]:
        print("Yes")
    else:
        print("No")
        

C++ Code:

#include <bits/stdc++.h>

using namespace std;

long long bpow(auto a,auto b){
  if(b==0){
    return 1;
  }
  else if(b&1){
    return bpow(a,b-1)*a;
  }
  else{
    auto B=bpow(a,b/2);
    return B*B;
  }
}
int main (){
    int a,b,c;
    cin>>a>>b>>c;
    if(b>=a&&c>=a){
        cout<<"YES"<<endl;
    }
    else{
        cout<<"NO"<<endl;
    }
}


Comments

Submit
0 Comments
More Questions

892B - Wrath
999A - Mishka and Contest
727C - Guess the Array
1625C - Road Optimization
1715D - 2+ doors
267A - Subtractions
1582A - Luntik and Concerts
560A - Currency System in Geraldion
946A - Partition
1068B - LCM
1692E - Binary Deque
679A - Bear and Prime 100
488A - Giga Tower
14A - Letter
1150A - Stock Arbitraging
1552A - Subsequence Permutation
1131F - Asya And Kittens
1475F - Unusual Matrix
133B - Unary
1547A - Shortest Path with Obstacle
624A - Save Luke
1238A - Prime Subtraction
1107C - Brutality
1391B - Fix You
988B - Substrings Sort
312A - Whose sentence is it
513A - Game
1711E - XOR Triangle
688A - Opponents
20C - Dijkstra