Ответ: Можно так:a = int(input())b = int(input())c = int(input())if a>c:   max=aelse:   max=bif c>max:   max=cprint(‘max = ‘,max)Пример:582max = 5