Area: Course Contents
Issue: the course showing wrong result in some cases, as the target result must include extra code content
Details: in the Python course the code written as follow which must result 33 if the inout is 3 and it show 6, the output of the input function must be string and here they assume it as integer
cost_of_app1e = 2
amount_of_apples = int(input("How many apples do you want? "))
total_sum = cost_of_app1e * amount_of_apples
print("You have to pay: " + str(total_sum))