a = 1
b = 2
c = 3
print(max(a, b, c))
#include <stdlib.h>
#include <time.h>
#include <iostream>
using namespace std;
#define N 16
void main()
{
int randomNumbers[N];
srand(time(NULL));
for (int i = 0;i < N; i++)
{
randomNumbers[i] = rand() % 40 - 20;
cout << "randomNumber[" << i << "] = " << randomNumbers[i] << endl;
}
cout << endl;
int counter = 0;
for (int i = 0; i < N; i++)
{
if (randomNumbers[i] < 0)
{
counter++;
}
}
cout << "counter = " << counter << endl;
}
def _max(a,b,c):
_max = a
if _max < b:
_max = b
if _max < c:
_max = c
return _max
print(_max(int(input("Число 1: ")), int(input("Число 2: ")), int(input("Число 3: "