+ 6
You can copy the link to your code and paste it here: like this đ
https://code.sololearn.com/cb77D8n91J0E/?ref=app
The issue: line 7 - print(kilometer, length)
You are trying to concatenate a float with a string which you can't do. The other solution is to cast kilometer to a string - print(str(kilometer) + length)