suma = 0
dane = input(" ").split()

for x in dane:
    liczba = int(x)
    if liczba > 0:
        suma += liczba

print("Suma dodatnich:", suma)