Write a function `capitalize` that reads the text from a file given as the first parameter and writes the result to a file given as the second parameter.
### Provided files
You can find the [input](input.txt) and its [result](result.txt) files to use for the test and to understand more what you have to do.
### Expected Functions
```java
import java.io.*;
public class Capitalize {
public static void capitalize(String[] args) throws IOException {
// your code here
}
}
```
### Usage
Here is a possible ExerciseRunner.java to test your function :