Skip to content

Instantly share code, notes, and snippets.

@princesanjivy
Created April 11, 2024 16:08
Show Gist options
  • Save princesanjivy/648bdf10547c2b3e1a18f7443bed4666 to your computer and use it in GitHub Desktop.
Save princesanjivy/648bdf10547c2b3e1a18f7443bed4666 to your computer and use it in GitHub Desktop.
Micro example program
x = input("Type a number: ")
y = input("Type another number: ")
sum = int(x) + int(y)
print("The sum is: ", sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment