# def obliczanieWysokosc(proporcja1:int,proporcja2:int,szerokośćPx:int) ->int:
#     return (proporcja2*szerokośćPx)/proporcja1

# print(obliczanieWysokosc(16,9,1920))
import pygame
pygame.init()
screen = pygame.display.set_mode((1280,720))
clock = pygame.time.Clock()
running = True

while running:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            running = False

    screen.fill("purple")
    pygame.display.flip()
    clock.tick(60) #limit FPS

pygame.quit()