Quite a few things are wrong with this unfortunately...
First, it'd be better if you posted with
tags instead of quote/output.
Now for the code:
Bug: You ask users for a numerical value indicating a crime but don't mention what these values are.
Error: You're using an unknown value (stored in your variables) in a comparison.
Bug: "Hacking = 2" is pointless after you've already tried to use it whilst undefined, and then after this it is not used in futer
Bug: "Hacking + 2" this statement LITERALLY does nothing
Repeat all the above errors and bugs for each of the following variables as they're all present:
Hacking, gta, firstmurder, bank
Bug: The program is not looped and also doesn't check the value of exit at the end anyway so there is no need to type "exit", any non-whitespace character will be taken and the program will exit
NOTE The things marked "bug" will most likely compile anyway, you may get warnings in the log/output but it shouldn't stop the .exe being made, however they do not do as intended (or in some cases here they don't do anything at all)
The things marked in "error" I expect will make the compiler complain and quit the building process... however I have seen cases where some "silly" compilers let uninitialised variables through and it's just set to whatever junk was last in it's current memory location.