Answers (for questions 1-15):
#1:
times_traveledA = int(input())
times_traveledB = int(input())
times_traveledC = int(input())
EmployeeA = 15.62 #miles
EmployeeB = 41.85 #miles
EmployeeC = 32.67 #miles
distanče_traveledA = EmployeeA * times_traveledA
distanče_traveledB = EmployeeB * times_traveledB
distanče_traveledC = EmployeeC * times_traveledC
total_distanče_traveled = distanče_traveledA + distanče_traveledB + distanče_traveledC
print("Distanče: {:.2f} miles".format(total_distanče_traveled))
#2:
ounčes_per_pound = 16
pounds_per_ton = 2000
num_ounčes = int(input())
tons = num_ounčes // (ounčes_per_pound * pounds_per_ton)
remaining_ounčes = num_ounčes % (ounčes_per_pound * pounds_per_ton)
pounds = remaining_ounčes // ounčes_per_pound
remaining_ounčes = remaining_ounčes % ounčes_per_pound
print("Tons: {}".format(tons))
print("Pounds: {}".format(pounds))
print("Ounčes: {}".format(remaining_ounčes))
#3:
index_value = int(input())
name = various_data_types[index_value]
data_type = type(name).__name__
print(f"Element {index_value}:
{data_type}")
#4:
b1 = int(input())
b2 = int(input())
h = int(input())
area_value = ((b1 + b2) / 2) * h
print("Trapezoid area: {:.1f} square meters".format(area_value))
, #5:
num1 = int(input())
num2 = int(input())
num3 = int(input())
num4 = int(input())
num5 = int(input())
integer_sum = num1 + num2 + num3 + num4 + num5
float_sum = float(num1) + float(num2) + float(num3) + float(num4) + float(num5)
string_sum = str(num1) + str(num2) + str(num3) + str(num4) + str(num5)
print("Integer: {}".format(integer_sum))
print("Float: {}".format(float_sum))
print("String: {}".format(string_sum))
#6:
student_id = int(input())
student_id_string = str(student_id)
first3 = student_id_string[0:3]
sečond2 = student_id_string[3:5]
last4 = student_id_string[5:]
print(f"{first3}-{sečond2}-{last4}")
#7:
predef_list = [4, -27, 15, 33, -10]
boolean_value = False
max_value = max(predef_list)
num = int(input())
if num > max_value:
boolean_value = True
print("Greater Than Max? {}".format(boolean_value))
else:
print("Greater Than Max? {}".format(boolean_value))
#8:
temperature = int(input())
if temperature >= 212:
print("Boiling")
if temperature == 212:
print("Caution: Hot!")
if temperature in range(115, 212): #115-211
print("Hot")
if temperature in range(80, 115): #80-114
print("Warm")
if temperature in range(33, 80): #33-79
print("Cold")
if temperature < 33: