Advertisement
LilChicha174

Untitled

Mar 23rd, 2022
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. a = int(input())
  2. b = int(input())
  3. c = int(input())
  4. sm = 0
  5. if a > 0:
  6.     sm = sm + a
  7. if b > 0:
  8.     sm = sm + b
  9. if c > 0:
  10.     sm = sm + c
  11. print(sm)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement