The KEY= option is used against a lookup dataset that has been indexed, the values of which are looked up in a second dataset. The data step therefore requires 2 set statements. In your code there is no dataset to lookup the values from 'Two', which results in an infinite loop with all variables having a missing value. If you added the 'Two' dataset in a separate SET statement, then it will just return a copy of it (without the f3 variable and with the transformation you put in). You obviously wouldn't ever want to do this, I'm just suggesting it to make the code work.
There are plenty of examples online on how to perform an index key merge, it is an efficient technique if you are looking up a small number of values in a large dataset.