The Great Kian
Practice
3.6 (258 votes)
Brute Force search
Easy
Problem
76% Success 51383 Attempts 10 Points 1s Time Limit 256MB Memory 1024 KB Max Code

View Russian Translation

The great Kian is looking for a smart prime minister. He's looking for a guy who can solve the OLP (Old Legendary Problem). OLP is an old problem (obviously) that no one was able to solve it yet (like P=NP).

But still, you want to be the prime minister really bad. So here's the problem:

Given the sequence a1, a2, ..., an find the three values a1 + a4 + a7 + ..., a2 + a5 + a8 + ... and a3 + a6 + a9 + ... (these summations go on while the indexes are valid).

Input

The first line of input contains a single integer n (1 ≤ n ≤ 105).

The second line contains n integers a1, a2, ..., an separated by space (1 ≤ ai ≤ 109).

Output

Print three values in one line (the answers).

Please login to use the editor

You need to be logged in to access the code editor

Loading...

Please wait while we load the editor

Loading...
Results
Custom Input
Run your code to see the output
Submissions
Please login to view your submissions
Similar Problems
Points:10
156 votes
Tags:
Basic ProgrammingBasics of ImplementationEasyImplementation
Points:10
89 votes
Tags:
ImplementationBasic Programming
Points:10
82 votes
Tags:
Basic ProgrammingEasy