for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ int temp = i * j; } }
O(n)
O(n²)
O(nlogn)
O(1)