Advertisement
iskhakovt

Untitled

Dec 26th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. data = [+1, -2, +3, -4, +5, -6, +7, +8, -9, +10,
  2.         -11, -12, +13, +14, -15, -16, +17, -18, +19, -20,
  3.         +21, -22, -23, +24, -25, -26, -27, +28, -29, -30,
  4.         +31, -32]
  5.  
  6. answer = 0
  7.  
  8. for i in data:
  9.     if i > 0:
  10.         answer += int(input()) + 4
  11.     else:
  12.         answer += -(int(input()) - 4)
  13. print(answer)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement