Problems
211 - Consecutive Odd Numbers
SUBMIT PROBLEM

Consecutive Odd Numbers

Time Limit: 1 sec

 

The Problem

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

 

21 + 23 + 25 69

 

 

The Input

The input file contains one integer number N (N<=3000).

 

The Output

Output will show the 3 consecutive odd integer numbers seperated by space in a separate line.

 

Sample Input

1617 

 

Sample Output

 537 539 541

 

 

 

 

Problem Setter: Shahin ShamS