Rathod Shankar AskiitiansExpert-IITB
Last Activity: 13 Years ago
The code for the above problem is written in python as follos
for x in range(0,1000):
a=15*x
y=a%16
if y==10 :
z=a%17
if z==3:
print(a)
The output of the above code is
3930
8010
12090
so the least possible value is 3930