name = input('Enter name here:')
pyc = input('enter pyc :')
tpy = input('enter tpy:')
percent = (pyc / tpy) * 100;
print (percent)
input('press enter to quit')
私がこのプログラムを実行するときはいつでも私はこれを手に入れます
TypeError: unsupported operand type(s) for /: 'str' and 'str'
pycをtpyで割るにはどうすればよいですか?