def even_num(x):
  if x%2==0:
     return True
  else:
    return False