Skip to content

Instantly share code, notes, and snippets.

View conectef's full-sized avatar

Flávio Silva conectef

  • Recife
View GitHub Profile
operacao = input('Qual operação (+, -, *, /) você quer fazer?')
a = int(input('Entre com o primeiro valor:'))
b = int(input('Entre com o segundo valor:'))
print(type(a))
soma = a + b
print(soma)
subtracao = a - b
multiplicacao = a * b
divisao = a / b
resto = a % b