7 lines
161 B
C++
7 lines
161 B
C++
// lanqiao 2095 九进制转十进制
|
|
#include<bits/stdc++.h>
|
|
using namespace std;
|
|
int main(){
|
|
cout << 2 * 1 + 2 * 9 + 2 * 9 * 9 * 9 << endl;
|
|
return 0;
|
|
} |