last_name)
        myprofile += "Gender: {}\n".format(gender)
        myprofile += "Birth Date: {}\n".format(birth_date)
        myprofile += "Phone: {}\n".format(phone_number)
        myprofile += "Email: {}\n".format(email)
        myprofile += "SSN: {}\n".format(ssn)
        myprofile += "Address: {}, {}, {}, {} {}\n".format(
            address, city, state, postal_code, country)

        author = Author()
        author.title = title
        author.first_name = first_name
        author.last_name = last_name
        author.gender = gender
        author.birth_date = birth_date
        author.phone_number = phone_number
        author.email = email
        author.ssn = ssn
        author.address = address
        author.city = city
        author.state = state
        author.postal_code = postal_code
        author.country = country
        author.save()

        print(myprofile)

    else:
        print("Sorry Data is not clean.")

    cnt += 1