Program in C to find largest number using if statement

import java .util.*;
public class Learner {
    public static void main(String[] args) 
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter first number:");
        int num1 = sc.nextInt();
        System.out.println("Enter Second number:");
        int num2 = sc.nextInt();
        System.out.println("Enter Third number:");
        int num3 = sc.nextInt();
        if (num1 >= num2 && num1 >= num3) {
            System.out.println(num1 + "is the largest number.");
        }
        if (num2 >= num1 && num2 >= num3) {
            System.out.println(num2 + "is the largest number.");
        }
        if (num3 >= num1 && num3 >= num2) {
            System.out.println(num3 + "is the largest number.");
        }
    }
}

OUTPUT

Enter the first number:400
Enter the second number:50
Enter the third number:30
400 is the largest number.