Skip to content

Instantly share code, notes, and snippets.

@chingovan
Last active August 29, 2015 14:23
Show Gist options
  • Save chingovan/eced14f321d6ab72a9d7 to your computer and use it in GitHub Desktop.
Save chingovan/eced14f321d6ab72a9d7 to your computer and use it in GitHub Desktop.
n = int(input("Nhap so vong lap :"))
s = 1;
t = 1;
for i in range(1, n + 1):
t = t / i
s = s + t
print("e = ", s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment