Skip to content

Instantly share code, notes, and snippets.

@ByteJoseph
Last active February 19, 2026 13:00
Show Gist options
  • Select an option

  • Save ByteJoseph/5a1336d62338558595982404e879f2d9 to your computer and use it in GitHub Desktop.

Select an option

Save ByteJoseph/5a1336d62338558595982404e879f2d9 to your computer and use it in GitHub Desktop.
Offload CPU calculations to human brain
"""
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}")
@AlvinJoby
Copy link

World’s first program that increases human RAM usage. 😂

pwoli item 🔥

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment