Код: Выделить всё
#include <iostream>
#include <windows.h>
using namespace std;
void main()
{
SetConsoleOutputCP(1251);
int a;
int b=0;
cout<<"Введите в одной строке два челых числа и нажмите <Enter>.\n";
cout<<"->";
cin>>a,b;
if(a<b)
{
cout<<a<< " меньше " <<b<<endl;
}
else
{
cout<<a<< " больше " <<b<<endl;
}}