diff --git a/YXZZ.PY b/YXZZ.PY
new file mode 100644
index 0000000..3b22287
--- /dev/null
+++ b/YXZZ.PY
@@ -0,0 +1,13 @@
+import pygame
+from pygame import locals
+
+screen = pygame.display.set_mode((500,400))
+
+bj = pygame.image.load('bj.png')
+hl = pygame.image.load('hl.png')
+
+while True:
+    screen.blit(bj, (0, 0))
+    screen.blit(hl, (85, 25))
+
+    pygame.display.update()
\ No newline at end of file
diff --git a/bj.png b/bj.png
new file mode 100644
index 0000000..804631c
Binary files /dev/null and b/bj.png differ
diff --git a/hl.png b/hl.png
new file mode 100644
index 0000000..d6019fb
Binary files /dev/null and b/hl.png differ