Ответ:
Объяснение:
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a>b)
cout<<a<<">"<<b;
else if(a<b)
cout<<a<<"<"<<b;
else cout<<a<<"="<<b;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a>b)
cout<<a<<">"<<b;
else if(a<b)
cout<<a<<"<"<<b;
else cout<<a<<"="<<b;
}