#include #include #include #include #include #include #include #include #include typedef long long l; typedef double d; typedef char c; using namespace std; void wjh(int a,int b){ if(a<=0){ return; } char x; wjh(a/b,b); if(a%b>=10){ x=a%b+55; cout <>a>>b; wjh(a,b); return 0; }