package com.codegym.task.task03.task0318;
/*
Plan to conquer the world
*/
import java.util.Scanner;
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter how many years you plan to take over: ");
int age = Integer.parseInt(scanner.nextLine());
System.out.println("Please enter your name: ");
String name = scanner.nextLine();
System.out.println(name + " will take over the world in " + age + " years. Mwa-ha-ha!");
}
}