fun main(){ var food = readln() var newFood = "" for (i in food){ if (i in '0'..'9') continue else newFood += i } print(newFood) }