{"raw_statement":[{"iden":"problem statement","content":"Takahashi has $A$ cookies, and Aoki has $B$ cookies. Takahashi will do the following action $K$ times:\n\n*   If Takahashi has one or more cookies, eat one of his cookies.\n*   Otherwise, if Aoki has one or more cookies, eat one of Aoki's cookies.\n*   If they both have no cookies, do nothing.\n\nIn the end, how many cookies will Takahashi and Aoki have, respectively?"},{"iden":"constraints","content":"*   $0 \\leq A \\leq 10^{12}$\n*   $0 \\leq B \\leq 10^{12}$\n*   $0 \\leq K \\leq 10^{12}$\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":"2 3 3"},{"iden":"sample output 1","content":"0 2\n\nTakahashi will do the following:\n\n*   He has two cookies, so he eats one of them.\n*   Now he has one cookie left, and he eats it.\n*   Now he has no cookies left, but Aoki has three, so Takahashi eats one of them.\n\nThus, in the end, Takahashi will have $0$ cookies, and Aoki will have $2$."},{"iden":"sample input 2","content":"500000000000 500000000000 1000000000000"},{"iden":"sample output 2","content":"0 0\n\nWatch out for overflows."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}