13 lines
151 B
Python
13 lines
151 B
Python
|
|
|
|
|
|
def process(input):
|
|
text = input
|
|
######
|
|
return text
|
|
|
|
if __name__ == '__main__':
|
|
input = 'a.pdf'
|
|
b = process(input)
|
|
print(b)
|