diff --git a/sp.py b/sp.py
index ab4c747148f74c77037cca311358d1ca8d29051b..56d20464eb6bf268d7afdc79d0984bbff3556367 100644
--- a/sp.py
+++ b/sp.py
@@ -142,8 +142,8 @@ if __name__ == "__main__":
             print("\tdestination : " + str(n))
             print("\tcout : " + str(d))
             p = get_path(n, path, source)
-            print("\tnombre de noeuds : "+str(len(p)))
-            print("\tchemin : "+" ".join(str(x) for x in p))
+            print("\tnombre de noeuds : " + str(len(p)))
+            print("\tchemin : " + " ".join(str(x) for x in p))
         else:
             output_fd.write(source.to_bytes(4, "big"))
             d, n = get_max(dist, source)