Strings
# print(type('hi hello there 24!'))
# username = 'supercoder'
# password = 'supersecret'
# long_string = '''
# WOW
# O O
# ---
# '''
# print(long_string)
first_name = 'Egor'
last_name = 'Andreyev'
full_name = first_name+ ' ' + last_name
print(full_name)INFO