moduł liczb ujemnych
int modulo(int x,int N){
return (x % N + N) %N;
}
UchihaItachi
int modulo(int x,int N){
return (x % N + N) %N;
}