{"raw_statement":[{"iden":"problem statement","content":"Print all the integers that satisfies the following in ascending order:\n\n*   Among the integers between $A$ and $B$ (inclusive), it is either within the $K$ smallest integers or within the $K$ largest integers."},{"iden":"constraints","content":"*   $1 \\leq A \\leq B \\leq 10^9$\n*   $1 \\leq K \\leq 100$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$A$ $B$ $K$"},{"iden":"sample input 1","content":"3 8 2"},{"iden":"sample output 1","content":"3\n4\n7\n8\n\n*   $3$ is the first smallest integer among the integers between $3$ and $8$.\n*   $4$ is the second smallest integer among the integers between $3$ and $8$.\n*   $7$ is the second largest integer among the integers between $3$ and $8$.\n*   $8$ is the first largest integer among the integers between $3$ and $8$."},{"iden":"sample input 2","content":"4 8 3"},{"iden":"sample output 2","content":"4\n5\n6\n7\n8"},{"iden":"sample input 3","content":"2 9 100"},{"iden":"sample output 3","content":"2\n3\n4\n5\n6\n7\n8\n9"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}