Week 1 Programming Exercise (Warm-up) Due Date: Thursday, May 19th 11:59PM Description: You are to write a program that takes as input 5 integer numbers from the stdin file (the keyboard). Input format will be a 5 numbers, separated by spaces with a newline at the end like so: 10 23 8 1002 23 Your program should output the largest number and the smallest number of the 5 to stdout (the screen) like so: 1002 8 FORMAT IS VERY IMPORTANT, do not add anything extra output or leave out the newlines (note that the above is meant to mean the newline character. Submission: You will receive submission instructions in the following lecture. Other: Any file you submit file this course should have the following header: /* File: filename.cpp Author: My Name Description: A 1-2 line description of what is contained here. */ You should also provide general comments (quality not quantity) throughout your code.