package com.codegym.task.task03.task0319;

/*
Predictions

*/

import java.io.*;

public class Solution {
    public static void main(String[] args) throws Exception {
        BufferedReader  p=new BufferedReader(new InputStreamReader(System.in));
        String name = p.readLine();
        int n = Integer.parseInt(p.readLine());
        int m = Integer.parseInt(p.readLine());
        System.out.println(name+" "+"will receive"+" "+n+" "+"in"+" "+m+" "+"years.");

        //write your code here
    }
}