(Printing distinct numbers)write a program that first reads an integer for the array size,then reads numbers into the array; and displays distinct numbers (i.e, if a number appears multiple times ,it is displayed only once).(Hint:Read a number and store it to an array if it is new.if the number is already in the array,discard it.After the input,the array contains the distinct numbers.)