竞赛
考级
黑客_天之神_ZDZL_zsy
a,b,c = map(int,input().split()) num = [] for i in range(1000 , 10000): if i % a ==0 and (i+1) % b == 0 and (i+2) % c == 0 : num.append(i) if num: print(max(num)) else: print('Impossible')
不行的孩子——吴颖俊