// TryDoWhile.kt(トライdo-while)
fun main() {

    var i: Int = 1
    do {
        println("Androidアプリを作りたい!")
        i = i + 1
    } while (i <= 3)
}