import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; import java.util.List; public class Main_yukicoder30 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int n = sc.nextInt(); int m = sc.nextInt(); List> edges = new ArrayList<>(); for (int i = 0; i < n; i++) { edges.add(new ArrayList<>()); } int[] e = new int[n]; for (int i = 0; i < m; i++) { int p = sc.nextInt() - 1; int q = sc.nextInt(); int r = sc.nextInt() - 1; edges.get(p).add(new Pair(r, q)); e[r]++; } int[] etmp = e.clone(); int[][] dp = new int[n][n]; boolean flag = true; while (flag) { flag = false; for (int i = 0; i < n; i++) { if (e[i] == 0) { for (Pair ee : edges.get(i)) { for (int j = 0; j < n; j++) { if (j == i) { dp[j][ee.a] += ee.b; } else { dp[j][ee.a] += ee.b * dp[j][i]; } } e[ee.a]--; } e[i]--; flag = true; } } } for (int i = 0; i < n - 1; i++) { if (etmp[i] == 0) { pr.println(dp[i][n - 1]); } else { pr.println(0); } } pr.close(); sc.close(); } private static class Pair { int a; int b; Pair(int a, int b) { this.a = a; this.b = b; } } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }