Question: A BASIC program consists of a series of statements, each of which is numbered in ascending order. Control is passed by use of a goto or gosub and a statement number. Write a program that reads a legal BASIC program and renumbers the statements so that the first starts at number F and each statement has a number D higher than the previous statement. The statement numbers in the input might be as large as a 32- bit integer, and you may assume that the renumbered statement numbers fit in a 32-bit integer. Your program must run in linear time.