diff --git a/main.c b/main.c
index f32d77894e08823423b753e4ea33dbd1c53cc85c..428e2d08a3cd91aea34e1251343fedf81e6d979e 100644
--- a/main.c
+++ b/main.c
@@ -10,8 +10,8 @@
  * Ce programme n'est pas optimisé et écris tous les diviseurs de <chiffre> même si ceux-ci apparaissent plus d'une fois
  */
 int main() {
-    FILE *f_in = fopen("C:\\Users\\arnau\\OneDrive\\Bureau\\Projet V1.0\\example_input.txt", "r");
-    FILE *f_out = fopen("C:\\Users\\arnau\\OneDrive\\Bureau\\Projet V1.0\\example_output.txt", "w");
+    FILE *f_in = fopen(path to "example_input.txt", "r");
+    FILE *f_out = fopen(path to "example_output.txt", "w");
     if (f_in == NULL) exit(1);
     if (f_out == NULL) exit(1);