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