Last active
February 19, 2026 13:00
-
-
Save ByteJoseph/5a1336d62338558595982404e879f2d9 to your computer and use it in GitHub Desktop.
Offload CPU calculations to human brain
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
| """ | |
| This is fun program to offload cpu calculations to human brain | |
| """ | |
| num = int | |
| class int(int): | |
| def __init__(self,data): | |
| super().__init__() | |
| self.data = data | |
| def __add__(self,other): | |
| self.a = num(input(f"Use your brain, \ncan you sum {self.data} + {other} for me? \nwhat is the answer : ")) | |
| return self.a | |
| if __name__ == "__main__": | |
| a = int(input("Enter the value of a: ")) | |
| b = int(input("Enter the value of b: ")) | |
| c = a+b | |
| print(f"The sum is {c}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
World’s first program that increases human RAM usage. 😂
pwoli item 🔥