212 - Consecutive Even Numbers
Consecutive Even Numbers
Time Limit: 1 sec
The Problem
Make a simple program that reads one variable named N which is the summation of 4 consecutive even numbers. Print the 4 consecutive even numbers whose summation is N.
22 + 24 + 26 + 28 = 100
The Input
The input file contains one integer number N (N<=5000).
The Output
Output will show the 4 consecutive even integer numbers seperated by space in a separate line.
Sample Input
812
Sample Output
200 202 204 206
Problem Setter: Shahin ShamS