what did i do wrong?
import java.util.Scanner;


public class Solution {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        String name = sc.nextLine();
        int number1 = sc.nextInt();
        int number2 = sc.nextInt();



        System.out.println(name + "will receive" + number1 + "in" + number2 + "years." );
    }
}