name = "Liu Mazin"
age = 62
relationship_status = "single"
relationship_status = 'It\'s complicated'
print(relationship_status)
# conversion from float to int
num = 9.3
# printing data type of 'num'
print('type:',
type(num).__name__)
# conversion to int
num = int(num)
# printing data type of 'num'
print('converted value:', num, ', type:', type(num).__name__)
# password checker input