I am trying to print country but it just doesn't work, why is that? It worked with place which is pretty much the same thing
budget = float(input())
season = input()
country = str
place = str
if budget <=100:
if season == "summer":
budget = budget - budget*0.3
country = "Somewhere in Bulgaria"
place = "Camp"
else:
budget = budget - budget*0.7
place = "Hotel"
elif 100<budget<=1000:
if season == "summer":
budget = budget - budget*0.4
country = "Somewhere in Balkans"
place = "Camp"
else:
budget = budget - budget*0.8
country = "Somewhere in Balkans"
place = "Hotel"
elif budget>1000:
budget = budget - budget*0.9
country = "Somewhere in Europe"
place = "Hotel"
print(country)
print(place,"-",budget)```