Now that you're a pro at choosing appropriate data types, creating variables, and assigning them values, let's see if you can "sight read" some code.
int cotton = 3;
int candy = 4;
System.out.println ( cotton + candy );
What is displayed to the console (1 point)?