Five lines of code, numbered 1 through 5, are as follows:


if (count > 0)
   if (score > 5)
	  cout << "count > 0 and score > 5\n";
   else
	  cout << "count > 0 and score <= 5\n";

Lines 1 through 5 are boxed together. Lines 2 through 5 are boxed together within the outer box. Lines 3 and 5 are each boxed and contained within the inner box.