If 08. Даны два числа. Вывести вначале большее, а затем меньшее из них.

Решение на Python 3:

import random

A = random.randrange(-3,3)
B = random.randrange(-3,3)
print("Два числа:", A, B)

if A > B:
print(A,B)
else:
print(B,A)

Решение на C++

#include <bits/stdc++.h>
using namespace std;

int main() {
srand((int)time(0));
int A, B;
A = rand() % 20 - 10;
B = rand() % 20 - 10;
cout << "Number 1: " << A << endl;
cout << "Number 2: " << B << endl;

if(A > B)
cout << A << "; " << B << endl;
else
cout << B << "; " << A << endl;

return 0;
}