3 solutions

  • 0
    @ 2023-7-31 16:17:58
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
         int x=0;
         int y=0;
         cin>>x>>y;
         if(x>y)
         {
              cout<<">";     
         }     
         if(x==y)
         {
              cout<<"=";
         }    
         if(x<y)
         {
              cout<<"<";
         }
         
        return 0;
    }
    

    Information

    ID
    546
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    5
    Tags
    # Submissions
    111
    Accepted
    47
    Uploaded By