# Mit Print kann ich das Programm den Wert einer Variablen ausgeben/anzeigen lassen
print 'Please choose a number'
a = raw_input(int)
print 'Please choose a different number'
b = raw_input(int)
print 'Please again choose a different number'
c = raw_input(int)
print (a**b)/c
Why is this not working? I always get the error
TypeError: unsupported operand type(s) ** /: 'str' and 'str'
I thought the sign for exponate is **, so why this does not work?