summaryrefslogtreecommitdiff
path: root/progs/a513.py
blob: 6d316ab4e32b32594420483b79874fbe60525892 (plain)
1
2
3
4
5
6
def does_Contain_B(a,b,c): 
    if (a == b): 
        return True
    if ((b - a) * c > 0 and (b - a) % c == 0): 
        return True
    return False