<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class NestLoop {
    public static void main(String args[]) {
		int n = Integer.parseInt(args[0]);
		int x = 0;
		for (int a=0; a&lt;n; a++)
		    for (int b=0; b&lt;n; b++)
				for (int c=0; c&lt;n; c++)
				    for (int d=0; d&lt;n; d++)
						for (int e=0; e&lt;n; e++)
						    for (int f=0; f&lt;n; f++)
								x++;
		System.out.println(x);
    }
}

</pre></body></html>