Что выдаст программа по окончании ее выполнения? a=15 b=25 c=45 if a>c and c<b: print (c) if a<c and c>b: print (a) if a>b or c<a: print (b)
Задание

Что выдаст программа по окончании ее выполнения?
a=15
b=25
c=45
if a>c and c<b:
print \(c\)
if a<c and c>b:
print \(a\)
if a>b or c<a:
print \(b\)