AnandaVieira

Exercicio 3

Feb 25th, 2021 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. # 3 - Faça um Programa que peça dois números e imprima a soma.
  2.  
  3. num1 = int(input('Digite um valor: '))
  4. num2 = int(input('Digite outro: '))
  5. soma = num1 + num2
  6.  
  7. print('A soma entre {} e {} vale: {}'.format(num1,num2,soma))
Add Comment
Please, Sign In to add comment