Skip to content

Instantly share code, notes, and snippets.

@renan778
Created July 13, 2021 13:12
Show Gist options
  • Save renan778/e847b44d8b026c7bc28ecc9551c5f80d to your computer and use it in GitHub Desktop.
Save renan778/e847b44d8b026c7bc28ecc9551c5f80d to your computer and use it in GitHub Desktop.
var1 = int(input('Digite um numero : '))
var2 = int(input('Digite outro numero : '))
s = var1 + var2
print('A soma entre {} e {} valerá {}'.format(var1, var2, s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment