package com.codegym.task.task03.task0318;
/*
Plan to conquer the world
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String name=br.readLine();
String ans=br.readLine();
int number=Integer.parseInt(ans);
System.out.println(name+" "+"will capture the world in"+" "+number+" "+"years. Mwa-ha-ha!");
//write your code here
}
}
package com.codegym.task.task03.task0318;
/*
Plan to conquer the world
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String name=br.readLine();
String ans=br.readLine();
int number=Integer.parseInt(ans);
System.out.println(name+" "+"will capture the world in"+" "+number+" "+"years. Mwa-ha-ha!");
// System.out.print(p+" "+"will capture the world in"+" "+i+" "+"years. Mwa-ha-ha!");
//write your code here
}
}