Created
December 7, 2025 10:55
-
-
Save AspirantDrago/4b9e3d3f2e69e17765e1ab795cdf16ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| n = int(input()) | |
| answers = [] | |
| for i in range(n + 1): | |
| answers.append((0, i)) | |
| print(len(answers)) | |
| for x, y in answers: | |
| print(x, y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment