public class SyntaxExample8 { public static void main (String[] argv) { int numGoals = 5; // Number of goals scored int numAssists = 6; // Number of assists int numShotsBlocked = 7; // Number of shots blocked System.out.println (" Goals scored=" + numGoals + " Assists=" + numAssists + " Shots-blocked=" + numShotsBlocked); } }