//TIP To Run code, press or
// click the icon in the gutter.
void main() {
//TIP Press with your caret at the highlighted text
// to see how IntelliJ IDEA suggests fixing it.
IO.println(String.format("Hello and welcome!"));
for (int i = 1; i <= 5; i++) {
//TIP Press to start debugging your code. We have set one breakpoint
// for you, but you can always add more by pressing .
IO.println("i = " + i);
}
}