typedef unsigned long int uL; typedef struct{uL q; uL r;} res; res divq(uL a, uL b, uL d){ return (res){a+3*b, b+5*d};}