long_string = '''
wow
OOO
___
'''
print(long_string)
first_name = "Mudassir"
last_name = "isah"
full_name = first_name + " " + last_name
print(full_name)
print(type(int(str(100))))
weather = "\t it\'s \"kind of\"sunny \n hope you have a good day!"
print(weather)
name = 'johnny'
age = 55
print(f'hi {name}. you are {age} years old')
name = "Mudassir"
course = "Machine Learning"
print(f"{name} is learning {course}")
x = 12
y = 8
print (f"the product is {x * y}")
text = "Mudassir"
print(text [0:8])
quote = "to be or not to be"
print(quote)
quote2 = quote.replace("be", "me")
name = "Mudassir Isah"
age = 21
relationship_status = "single"
relationship_status = "it\'s complicated"
print(relationship_status)
print(quote2)
birth_year = input('What year were you born?')
age = 2019 - int(birth_year)
print(f'your age is:{age}')