fork download
  1. x=int(input())
  2. y=int(input())
  3. wynik=x*y
  4. if wynik%2==0: print(wynik)
  5. else: wynik+=1
  6. print(wynik)
Success #stdin #stdout 0.09s 14172KB
stdin
7
3
stdout
22