def zad2(a,b,c): if a>b: return a if a>c: return a if b>a: return b if b>c: return b if c>a: return c if c>b: return c