def mapa=['Lodz':737000 , 'Warszawa':172000 , 'Krakow':756000]
mapa.each {
println it.key + ', ' + it.value
}


