An algorithm is represented in the pseudocode below:
1 n ← USERINPUT
2 IF n MOD 3 = 0 THEN
3 OUTPUT n + 5
4 ELSE
5 OUTPUT n * 2
6 ENDIF
Select the option that shows the output from the algorithm when the user input is 6.
222
666
111111
121212