#print multiples of 3 in given N numbers
s = (str(input("Enter numbers separated by SPACE: "))).split(" ")
print("Multipl of 3 are: ")
for r inrange(0,len(s)):
if(int(s[r])%3==0):
print(s[r])
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments