#include; int main() { int a[7] = { 4,2,8,5,7,1 }; int N; scanf("%d", &N); printf("%d", a[N % 6]); }