Comment on Write a program that makes 2 + 2 = 5Comments−noobermin12yI'm surprised no one has suggested this yet. In pythonWrite a program that seemingly adds the numbers 2 and 2a=2+2and outputs 5.print(5)Yeah, I know that isn't the intent here, but, following the wording of the contest rules exactly...
Comments
I'm surprised no one has suggested this yet. In python
a=2+2
print(5)
Yeah, I know that isn't the intent here, but, following the wording of the contest rules exactly...