summaryrefslogtreecommitdiff
path: root/progs/a303.py
blob: 5a68147a957bd7a96a091307a6c14fe2672d2c09 (plain)
1
2
3
4
5
def even_num(x):
  if x%2==0:
     return True
  else:
    return False