From 2324e4115b87c197675c9a0ea5565925eda6daee Mon Sep 17 00:00:00 2001 From: MartinsJessica <101491038+MartinsJessica@users.noreply.github.com> Date: Tue, 14 Feb 2023 22:17:23 -0300 Subject: [PATCH] soma.py --- soma.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 soma.py diff --git a/soma.py b/soma.py new file mode 100644 index 0000000..275e668 --- /dev/null +++ b/soma.py @@ -0,0 +1,4 @@ +a = int(input("Digite um número: ")) +b = int(input("Digite um número: ")) +soma = a+b +print (soma)