class Main {
public static void main(String[] args) {
String name;
String school;
int age;
name = "bob";
school = "Hogwarts";
age = 18;
System.out.println(
"My name is" + name + ", and I attend" + school + ". I am" + age + "years old");
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: