Skip to content

Instantly share code, notes, and snippets.

@Svastikkka
Created June 12, 2020 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Svastikkka/458da1335175316e54bebfb124bb800f to your computer and use it in GitHub Desktop.
Save Svastikkka/458da1335175316e54bebfb124bb800f to your computer and use it in GitHub Desktop.
num=int(input())
count=1
arr=[]
while len(arr)<num:
res=3*count+2
if res%4!=0:
arr.append(res)
count=count+1
for i in range(0,len(arr)):
print(arr[i],end=" ")
@Svastikkka
Copy link
Author

Terms of AP

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment