+ 1
#ĐŸĐŸĐżŃ€ĐŸĐ±ŃƒĐč ŃŃ‚ĐŸŃ‚ ĐșĐŸĐŽ n = int(input()) for x in range(1, n): if x % 3 == 0 and x % 5 == 0: print("SoloLearn") elif x % 2 == 0: continue elif x % 3 == 0: print("Solo") elif x % 5 == 0: print("Learn") else: print(x)
22nd Feb 2022, 12:44 PM
CodeStory
CodeStory - avatar