////////////////////////////////////////////////////////////// minOfThree // // Takes three integer inputs and returns the smallest of them; there is // no guarantee that the values will all be different. // // Parameters: // First three integer values, in no particular order // Second // Third // // Returns: smallest value among First, Second, Third // int minOfThree(int First, int Second, int Third) { // Paste the body of your solution here and submit this file. // Do not change anything above this comment. } // Do not change anything below this comment.