n = int(input("Podaj liczbe: "))
suma = 0
for i in range(n):
liczba = float(input("Podaj składnik sumy: "))
suma = suma+liczba
print("Suma podanych liczb wynosi",suma)
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
n = int(input("Podaj liczbe: "))
suma = 0
for i in range(n):
liczba = float(input("Podaj składnik sumy: "))
suma = suma+liczba
print("Suma podanych liczb wynosi",suma)