print("hello world")
positivos = []
for i in range(15):
num=int(input(f"\nIngresa el número {i+1}: "))
#si es negativo
if num < 0:
num = num*-1
#si es positivo
positivos.append(num)
print("\nnúmeros a positivo:")
print(positivos)
To embed this project on your website, copy the following code and paste it into your website's HTML: