0
where is the problem
7 odpowiedzi
+ 5
You have to insert "yes true" between quotes
+ 1
the first problem is the if statement
you won't execute what is inside unless you fix the condition
if(10 + 15 == 30)
+ 1
second problem is the print(yes true)
you don't have any variables named yes and true
so you need to print a string
print("yes true")
+ 1
thanks guys ❤️❤️❤️ big love
0
Here's the solution
X = 10
Y = 15
if( X + Y == 25):
print("yes true")