Giving Awards

The employees of the R1 company often spend time together: they watch football, they go camping, they solve contests. So, it’s no big deal that sometimes someone pays for someone else.

Today is the day of giving out money rewards. The R1 company CEO will invite employees into his office one by one, rewarding each one for the hard work this month. The CEO knows who owes money to whom. And he also understands that if he invites person x to his office for a reward, and then immediately invite person y, who has lent some money to person x, then they can meet. Of course, in such a situation, the joy of person x from his brand new money reward will be much less. Therefore, the R1 CEO decided to invite the staff in such an order that the described situation will not happen for any pair of employees invited one after another.

However, there are a lot of employees in the company, and the CEO doesn’t have a lot of time. Therefore, the task has been assigned to you. Given the debt relationships between all the employees, determine in which order they should be invited to the office of the R1 company CEO, or determine that the described order does not exist.

Input

The first line contains space-separated integers n and m  — the number of employees in R1 and the number of debt relations. Each of the following m lines contains two space-separated integers a ib i (1 ≤ a i, b i ≤ na i ≠ b i), these integers indicate that the person number a i owes money to a person a number b i. Assume that all the employees are numbered from 1 to n.

It is guaranteed that each pair of people pq is mentioned in the input data at most once. In particular, the input data will not contain pairs pq and qp simultaneously.

Output

Print -1 if the described order does not exist. Otherwise, print the permutation of n distinct integers. The first number should denote the number of the person who goes to the CEO office first, the second number denote the person who goes second and so on.

If there are multiple correct orders, you are allowed to print any of them.

Examples

input

2 1
1 2

output

2 1 

input

3 3
1 2
2 3
3 1

output

2 1 3 

Solution:

#include <iostream>
#include <iomanip>
#include <cstdio>
#include <set>
#include <vector>
#include <map>
#include <cmath>
#include <algorithm>
#include <memory.h>
#include <string>
#include <cstring>
#include <sstream>
#include <cstdlib>
#include <ctime>
#include <cassert>

using namespace std;

const int N = 30010;
const int NN = (N >> 5) + 10;

unsigned int one = 1;
unsigned int a[N][NN];

int pr[N], ne[N];

int main() {
int n, m;
scanf("%d %d", &n, &m);
int nn = (n >> 5) + 1;
for (int i = 1; i <= n; i++)
    for (int j = 0; j < nn; j++) a[i][j] = 0;
  while (m--) {
    int foo, bar;
    scanf("%d %d", &foo, &bar);
    a[foo][bar >> 5] |= (one << (bar & 31));
  }
  ne[0] = 1; pr[1] = 0;
  ne[1] = n + 1; pr[n + 1] = 1;
  for (int i = 2; i <= n; i++) {
    int t = 0;
    while (true) {
      if (a[t][i >> 5] & (one << (i & 31))) {
        t = ne[t];
        continue;
      }
      if (a[i][ne[t] >> 5] & (one << (ne[t] & 31))) {
        t = ne[t];
        continue;
      }
      pr[i] = t;
      ne[i] = ne[t];
      pr[ne[i]] = i;
      ne[pr[i]] = i;
      break;
    }
  }
  int t = ne[0];
  printf("%d", t);
  while (ne[t] <= n) {
    t = ne[t];
    printf(" %d", t);
  }
  printf("\n");
  return 0;
}