diff --git a/scripts/copypaste_bigwig_regions.py b/scripts/copypaste_bigwig_regions.py
index a3d06ca2f6c01206e4c2f9c4e5fa03b1be16db08..56e8e04cbf033d91177a32419b175518c530c129 100755
--- a/scripts/copypaste_bigwig_regions.py
+++ b/scripts/copypaste_bigwig_regions.py
@@ -91,10 +91,13 @@ def main():
     region_extractor = itemgetter("chrom", "start", "end")
     from_region = region_extractor(config["from_region"])
     to_region = region_extractor(config["to_region"])
+    print(f"Copying {from_region} of {config['from_bw']} "
+          "into {to_region} of {config['to_bw']}")
     paste_bigwig_region(
         config["from_bw"], config["to_bw"],
         from_region, to_region,
         config["dest_bw"])
+    print(f"Results written in {config['dest_bw']}")
 
     return 0