Write a C++ program that prompts a user to input an integer and then ouputs both the individual digits of the number and the sum of the digits. For example, it should output the individual digits of 3456 as 3 4 5 6, output the individual digits 0f 8030 as 8 0 3 0, outputs 2345265 as 2 3 5 2 6 5 and so on I hope this is clear enough.