Print a triangle

Report a typo

Write a program that prints the following shape:

#
##
###
####
#####
######

Sample Input 1:


Sample Output 1:

#
##
###
####
#####
######
Write a program in Kotlin
fun main() {
// show me what you got...
}
___

Create a free account to access the full topic