#include<iostream>
using namespace std;
int main()
{
if a>=b anda>=c:
    max_value=b
elif b>=a and b>=c;
    max_value=b
    else:
    max_value=c
    return 0;
}