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
}
}
varified correctly but error in running
Under discussion
Comments (2)
- Popular
- New
- Old
You must be signed in to leave a comment
Roman
27 August 2018, 11:53
What error did you receive?
0
Pintu kumar
24 August 2018, 09:53
help in the abpve problem
0