16 lines
285 B
C++
16 lines
285 B
C++
|
//#include <iostream>
|
||
|
//#include <string>
|
||
|
//using namespace std;
|
||
|
//
|
||
|
////10 2
|
||
|
//string jin(int n,int j) {
|
||
|
// if(n==0)return "";
|
||
|
// return jin(n/j,j)+(n%j>=10 ? char(n%j+55) : char(n % j + 48));
|
||
|
//}
|
||
|
//
|
||
|
//int main() {
|
||
|
// int n,j;
|
||
|
// cin>>n>>j;
|
||
|
// cout<<jin(n,j);
|
||
|
// return 0;
|
||
|
//}
|