Problems
309 - Odd Numbers
SUBMIT PROBLEM

Odd Numbers

Time Limit: 1 sec

 

The Problem

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

 

21 + 23 + 25 + 27 = 96

 

 

The Input

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

 

The Output

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

 

Sample Input

96

33880

25352

 

Sample Output

21 23 25 27

8467 8469 8471 8473

6335 6337 6339 6341

 

 

 

 

Problem Setter: Shahin ShamS