Split n into maximum composite numbers
Given n, print the maximum number of composite numbers that sum up to n. First few composite numbers are 4, 6, 8, 9, 10, 12, 14, 15, 16, 18, 20, â¦â¦â¦ Examples: Input: 90 Output: 22Explanation: If we add 21 4's, then we get 84 and then add 6 to it, we get 90.Input: 10Output: 2Explanation: 4 + 6 = 10 B