import java.util.*;
import java.lang.*;
import java.io.*;
// The main method must be in a class named "Main".
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("enter your name");
String name = sc.next();
System.out.println("Hello! "+name);
System.out.println("enter your city");
String fname= sc.next();
System.out.println("Hey there, "+name +" from " +fname+" It's great to have you here. "+fname+" is such a vibrant city with its unique charm and warm-hearted people,");
System.out.println("Whether you're exploring its historical landmarks or indulging in local delicacies");
System.out.println( fname+" offers an unforgettable experience. Feel free to ask any questions or share your thoughts. Enjoy your time here!");
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: