Skip to content

Instantly share code, notes, and snippets.

@Svastikkka
Created June 12, 2020 10:15
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/3250d31d38f8d320336b3d84c3e7e0e6 to your computer and use it in GitHub Desktop.
Save Svastikkka/3250d31d38f8d320336b3d84c3e7e0e6 to your computer and use it in GitHub Desktop.
num=int(input())
c=int(input())
if c==1:
res=0
for i in range(1,num+1):
res=res+num
num=num-1
print(res)
elif c==2:
res=1
for i in range(1,num+1):
res=res*num
num=num-1
print(res)
else:print(-1)
@Svastikkka
Copy link
Author

Sum or Product

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