{"raw_statement":[{"iden":"problem statement","content":"Print an arithmetic sequence with first term $A$, last term $B$, and common difference $D$.\nYou are only given inputs for which such an arithmetic sequence exists."},{"iden":"constraints","content":"*   $1 \\leq A \\leq B \\leq 100$\n*   $1 \\leq D \\leq 100$\n*   There is an arithmetic sequence with first term $A$, last term $B$, and common difference $D$.\n*   All input values are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$A$ $B$ $D$"},{"iden":"sample input 1","content":"3 9 2"},{"iden":"sample output 1","content":"3 5 7 9\n\nThe arithmetic sequence with first term $3$, last term $9$, and common difference $2$ is $(3,5,7,9)$."},{"iden":"sample input 2","content":"10 10 1"},{"iden":"sample output 2","content":"10\n\nThe arithmetic sequence with first term $10$, last term $10$, and common difference $1$ is $(10)$."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}