// Code 7 - Nested for loops
// Kotlin Programming

fun main() {
    for (x in 1..5) {
        for (y in 1..3) {
            println("Hello " + x + " " + y)
        }
    }
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: