code = int(input("Введите номер города:"))
mins = int(input("Введите кол-во минут:"))
if code == 343:
price = 15 * mins
print("Екатеринбург")
print("Цена: ",price)
elif code == 381:
price = 18 * mins
print("Омск")
print("Цена: ",price)
elif code == 473:
price = 13 * mins
print("Воронеж")
print("Цена: ",price)
else: # code 485
price = 11 * mins
print("Ярославль")
print("Цена: ",price)