#include<stdio.h> void six(int x) { if(x>5) { six(x/6); } printf("%d",x%6); } int main() { int n=0; scanf("%d",&n); six(n); return 0; }