Skip to content

Instantly share code, notes, and snippets.

@kipkitur
Last active July 16, 2020 01:45
Show Gist options
  • Save kipkitur/77fffaf0c648dd6ef4b420182601bae0 to your computer and use it in GitHub Desktop.
Save kipkitur/77fffaf0c648dd6ef4b420182601bae0 to your computer and use it in GitHub Desktop.
def addition():
a=int(input("enter a number. "))
b=int(input("enter a 2nd number. "))
c=int(input("enter a 3rd number. "))
print("{} is a+b, {} is b+c, {} is a+b+c".format(a+b, b+c, a+b+c))
addition()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment