Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # Script que suma dos numeros enteros
- from aritmetica import sumar as s
- a = int(input("Ingrese un entero: "))
- b = int(input("Ingrese otro entero: "))
- print(f"La suma de {a} y {b} da {s(a,b)}")
Advertisement
RAW Paste Data
Copied
Advertisement