fork download
  1. a,b,c = map(int,input().split())
  2.  
  3. if a > b:a,b=b,a
  4. if a > c:a,c=c,a
  5. if b > c:b,c=c,b
  6. print(b)
Success #stdin #stdout 0.02s 9392KB
stdin
2 4 3
stdout
3