What is wrong with the following statement ? Number = input (“Number”) Sqr = Number*Number

Number is a string type here because all input statements take values as a string type and two strings can not be multiplied. Hence a TypeError will be raised