JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.io.*;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception{
Scanner sc = new Scanner(System.in);
String name = sc.nextLine();
int numberYear = sc.nextInt();
String location = sc.nextLine();
String booThang = sc.nextLine();
int dateYears = sc.nextInt();
String v1 = sc.nextLine();
String v2 = sc.nextLine();
String v3 = sc.nextLine();
System.out.println(name+ "will be a java developer in" +numberYear+ "years. If he continues to work hard and keeps the goal in mind he can do it. I believe it!!" +name+ "told me he would love to move to" +location+ " and work for a great company with great benefits. " +
"His lil boo thing goes by the name of" +booThang+ " and he wouldnt mind if they started to date in the " +
"next" +dateYears+ " so that way the all could live together and grow together." +name+ "and" +booThang+ "" +
" would love to have vacations in" +v1+ "" +v2+ "and" +v3+ ". lets make our ideas come to reality if God is willing.");
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run