// This program reads in information of a number of knobs.
// For each knob, its current state, current position and
// target position. It then computes the state of each knob after
// the required number of stops, and the total stops of all knobs.

// Add import statement(s) below


public class TurnKnobs{

	public static void main(String[] args){


		// Declare the necessary variables
		// eg: ArrayList<Knob> knobs = new ... (complete the line)



		// Read input and process them accordingly



		// Output the result
		// Use the given println() statements below to ensure that 
		// your outputs are in the right format.

		// Print result for each knob 	 
		System.out.println("on");
		System.out.println("off");

		// Print total number of stops 
		int move = 0;

		System.out.println("Total stop(s) = " + move);
	}
}

