2008-03-29 37.Greatest Common Divisor golf Python まともに解く。45byte。 s,t=input(),input() while t:s,t=t,s%t print s チート的解答。27byte。 print[14,3,32768][id('')%3]