
#import the pandas library and aliasing as pd
import pandas as pd

s1 = pd.Series()
print(s1)

s2 = pd.Series([9,8])
print(s2)

s3 = pd.concat([s1, s2])
print(s3)
