package no240; import java.awt.Point; import java.util.HashSet; import java.util.Scanner; public class Main { static int[] dx = {-2,-2,-1,-1,1,1,2,2}; static int[] dy = {-1,1,-2,2,-2,2,-1,1}; public static void main(String[] args) { HashSet hs = new HashSet<>(); hs.add(new Point(0,0)); for(int i=0;i<3;i++) { HashSet hsn = new HashSet<>(); for(Point p: hs) { for(int k=0;k