Help me in solving CSJ211A problem

My issue

the output is correct still getting wrong ans

My code

// The code below is incorrect. Debug this code to solve this problem
import java.util.Scanner;

class Codechef
{
	public static void main (String[] args)
	{
		Scanner read = new Scanner(System.in);
		
		int t = read.nextInt();
		for(int i=0; i<t; i++)
		{
    		int a = read.nextInt();
    		int b = read.nextInt();
    		int c = read.nextInt();
    		
    		int total_score = a+b+c;
    		int minimum_score = Math.min(a, Math.min(b, c));
    		
    		if(total_score>=100 && minimum_score>10){
    		    System.out.println("PASS");
    		}
    		else{
    		    System.out.println("FAIL");
    		}
		}
	}
}

Learning course: Java for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone

@umesh1301
the minimum score should be >=10 , u have done >10;