Объединение двух файлов
Есть два файла с текстом. В первом файле все строки пронумерованы, как в примере ниже:
1. Individuals and Interactions Over Processes and Tools
2. Working Software Over Comprehensive Documentation
3. Customer Collaboration Over Contract Negotiation
4. Responding to Change Over Following a Plan
Второй файл просто содержит строки одну за другой без нумерации. Вам нужно объединить второй файл с первым, продолжив нумерацию и добавив строки из второго файла.
На вход подаются две строки — имя первого файла и имя второго файла.
Программа должна объединить файлы.
Input
doc.txt
second.txt
doc.txt
1. Individuals and Interactions Over Processes and Tools
2. Working Software Over Comprehensive Documentation
3. Customer Collaboration Over Contract Negotiation
4. Responding to Change Over Following a Plan
second.txt
Customer satisfaction through early and continuous software delivery
Accommodate changing requirements throughout the development process
Frequent delivery of working software
Collaboration between the business stakeholders and developers throughout the project
Support, trust, and motivate the people involved
Enable face-to-face interactions
Working software is the primary measure of progress
Agile processes to support a consistent development pace
Attention to technical detail and design enhances agility
Simplicity
Self-organizing teams encourage great architectures, requirements, and designs
Regular reflections on how to become more effective
Resulting doc.txt
1. Individuals and Interactions Over Processes and Tools
2. Working Software Over Comprehensive Documentation
3. Customer Collaboration Over Contract Negotiation
4. Responding to Change Over Following a Plan
5. Customer satisfaction through early and continuous software delivery
6. Accommodate changing requirements throughout the development process
7. Frequent delivery of working software
8. Collaboration between the business stakeholders and developers throughout the project
9. Support, trust, and motivate the people involved
10. Enable face-to-face interactions
11. Working software is the primary measure of progress
12. Agile processes to support a consistent development pace
13. Attention to technical detail and design enhances agility
14. Simplicity
15. Self-organizing teams encourage great architectures, requirements, and designs
16. Regular reflections on how to become more effective
Обратите внимание, что имена файлов задаются на входе и не всегда будут
doc.txt
или second.txt
.Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB