#-*- coding: utf-8 -*-# import random import sys import math import pygame from pygame import mixer import time from time import sleep WINDOW_WIDTH = 800 WINDOW_HEIGHT = 500 pygame.font.init() font = pygame.font.Font('freesansbold.ttf', 50) redtomato = pygame.image.load('tomatotomato.png') happytomato = pygame.image.load('redtomato.png') sadtomato = pygame.image.load('sadtomato.png') mansay = py..