Hint: You need to have two integers before you start the loop: one to track the number of many capital letters you find and one track the number of miniscules you find as you loop through your string.
Hint: You'll need two if statements that check for the characters in your string and see if they're upper or lowercase. You may want to see the ranges for chars in ascii code to make it very easy.