first characters of the three strings

    first characters of the three strings


    a=input()

    b=input()

    c=input()

    s=""

    s=s+a[0]

    s=s+b[0]

    s=s+c[0]

    print(s)

Comments