I have implemented the following code which takes these values as input:-
3 6
CLICK 1
CLICK 2
CLICK 3
CLICK 2
CLOSEALL
CLICK 1
But for taking string input I tried nextLine() but it is not taking input in that case.If I use next() then it treats CLICK and 1 as two different strings and so I am getting ArrayIndexOutOfBoundsException as I am splitting the string and parsing it to int. What is the alternative to handling such inputs?
import java.util.*;
    
public class TweetClose {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int open = 0;
        int a[] = new int[50];
        for (int i = 1; i <= n; i++) {
            a[i] = 0;
        }
        for (int i = 0; i < k; i++) {
            String s = sc.nextLine();
            if (s.equals("CLOSEALL")) {
                open = 0;
                for (int j = 1; j <= n; j++) {
                    a[j] = 0;
                }
            } else {
                String[] st = s.split(" ");
                int y = Integer.parseInt(st[1]);
                if (a[y] != 1) {
                    a[y] = 1;
                    open++;
                }
            }
            System.out.println(open);
        }
        sc.close();
    }
}
 
     
     
    