The program should receive three N, A, and B values as input, and should print the multiples of N contained in the interval between A and B. I am doing this, but it is going wrong:
N = int(raw_input())
A = int(raw_input())
B = int(raw_input())...
asked by
04.04.2016 / 14:01