from graphics import *

def main():
  window = GraphWin("Example", 600, 600)
  window.setBackground("red")
  window.getMouse()

main()
