Write a squish program that reads a file, creates a new file whose contents are a compressed version of the original file, and uses the standard function remove to remove the original file. The original file name is a command-line argument, and the new file name is the original file name followed by .squish; for example, squish data.txt will read data.txt, write data.txt.squish, and call remove("data.txt"). The compression procedure is to replace each th with Q; for example, the thought is compressed into Qe Qought. Your program must exit nonzero (without removing the original file!) if it has any trouble reading, writing, etc., or if the original file contains Q.