✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does the following Python program print to the screen when executed?
Wat druk die volgende Python program na die skerm wanneer dit uitgevoer word?
#--------------------------------#precedence.pyimport stdiodef main(): X = 2 Y = 1 X = X**Y**X + 5*Y Y = (5*Y % 4) // 2 stdio.writeln(str(X)+" "+str(Y))if __name__ == "__main__": main()#--------------------------------