print("Ingresa 4 números enteros para sumar sus valores absolutos")
a=int(input())
b=int(input())
c=int(input())
d=int(input())

a1=abs(a)
a2=abs(b)
a3=abs(c)
a4=abs(d)
print("La suma del valor absoluto de",a,b,c,d, "es igual a")
print(a1+a2+a3+a4)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: