# conditional statement V1 name = input('what is your name? ') surname = input('what is your surname') age = int(input( 'how old are you? ')) if age <16: print (f' appologies Mr {surname}! you need to be at least 16 ') else: print (f'Hey {name} {surname}! welcome to the website. ') print ('THE PROGRAM IS FINISHED')