I was trying to play around with raw_input and dind't got any much of success. Basically the idea is to sum, minus, and multiply two different numbers.
if __name__ == '__main__':
a = raw_input()
b = raw_input()
print(a+b)
So it says that I need to define raw_input. I was wondering if there's any way to input from the console 2 numbers randomly. As far as I know raw_input stores the data in the system?