N=int(input()) if N==2: ans="INF" elif N==3: ans=6 elif N==4: ans=6 elif N==5: ans=4 else: ans=2 print(ans)