fun main() {
println("Coffee Machine")
var moneyAmount = 120
var cappuccinoPrice = 200
var espressoPrice = 100
var waterPrice = 50
var glacePrice = 185
if (moneyAmount >= cappuccinoPrice) {
println("You can buy cappucino")
}
if (moneyAmount >= espressoPrice) {
println("You can buy espresso")
}
if (moneyAmount >= waterPrice) {
println("You can buy water")
}
if (moneyAmount >= glacePrice) {
println("You can buy glace")
}
}