#!/usr/sbin/python # -*- coding: utf-8 -*- def c2one(num): if num > 2: return int(num / 3), num % 3 elif num == 2: ...