rule all:
    input:
        expand("results/{i}.txt", i=range(5)),


rule a:
    output:
        "results/{i}.txt",
    run:
        shell("eho {wildcards.i} > {output}")
