فایل متنی
فایل cpp
#include "stdafx.h"
#include "iostream"
using namespace std;
//alidoran
int main()
{
int x, y, temp=0;
cout << "Enter two integers: ";
cin >> x >> y;
if (x > y) temp = x;
if (x > y) x=y;
if (temp>y) y = temp;
cout << x << " <= " << y << endl;
system("pause");
return 0;
}