Problem statement: Given a non-negative number "num", return True if num is within 2 of a multiple of 10.
def near_ten(num): within = [-2,-1,0,1,2