if i'm runnig my code without verification in working correctly, but when i'm asking the verification the system replay me tha last condition is not met. my code: package com.codegym.task.task04.task0424; /* Three numbers */ import java.util.*; public class Solution { public static void main(String[] args) throws Exception { //write your code here Scanner leggi = new Scanner(System.in); int a = leggi.nextInt(); int b = leggi.nextInt(); int c = leggi.nextInt(); if (a!=b && a!=c){ System.out.println(1); } else if (b!=a && b!=c){ System.out.println(2); } else if (c!=a && c!=b){ System.out.println(3); } else if (a!=b && a!=c && b!=c) { } } Could you pls help me?