Problems
310 - Even Numbers
SUBMIT PROBLEM

Even Numbers

Time Limit: 1 sec

 

The Problem

Make a simple program that reads one variable named N which is the summation of 5 consecutive even numbers. Print the 5 consecutive even numbers whose summation is N.

 

22 + 24 + 26 + 28 + 30 = 130

 

 

The Input

Input file contain a series of line, each line contain one integer number N (N<=50000). Input is terminated by EOF.

 

The Output

For each line of input, output will show the 5 consecutive even integer numbers seperated by space in a separate line.

 

Sample Input

130

230

42360

 

Sample Output

22 24 26 28 30

42 44 46 48 50

8468 8470 8472 8474 8476

 

 

 

 

Problem Setter: Shahin ShamS