def process(input): text = input ###### return text if __name__ == '__main__': input = 'a.pdf' b = process(input) print(b)