0
consolewrite
What is wrong with 41 line ? đ€đ€ https://code.sololearn.com/cOGZJrN19n82/?ref=app
3 Answers
+ 3
You declared the variables with "var" instead of "int" and the compiler think that your variables are strings, and is therefore giving you an error because you can't subtract 2 strings.
Just declare s1,s2, and s3 as int and it will be fixed.
+ 3
You used return at frist
I changed your code
https://code.sololearn.com/cQ9VwKUHqSp2/?ref=app
0
thanks đđ



