Problem in submitting code

My issue

Not able to submit the code , because continously submitting is coming.

My code

/* package codechef; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes 
		Scanner sc = new Scanner(System.in);
		int count=0;
		for(int i=0; i<4; i++){
		    int a = sc.nextInt();
		    if(a>=10)
		    count+=1;
		}
		System.out.println(count);
	}
}

Problem Link: PRACTICEPERF Problem - CodeChef