57.1k views
4 votes
What is the output of this program? numA = 2 numB = 3 if numA == 2 and numB == 2: print("yes") elif numA == 2 and numB == 3: print("no") Output:

User Bran
by
4.6k points

1 Answer

6 votes

Answer:

it will print out "No"

Step-by-step explanation:

User Jimmy Zhang
by
4.7k points