def main(): from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum from heapq import heapify, heappop, heappush from bisect import bisect_left, bisect_right from copy import deepcopy import copy import random from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_,itemgetter INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!! ''' ''' N,M = map(int, input().split()) G = [[] for _ in range(N+1)] for _ in range(M): u,v,w = map(int, input().split()) G[u].append((v,w)) G[v].append((u,w)) Q = [] heappush(Q,(-INF,0,1)) seen = [0]*(N+1) while len(Q) > 0: mx,cnt,pos = heappop(Q) mx = -mx if seen[pos] != 0: continue seen[pos] = 1 if pos == N: print(mx,cnt) exit() for nx,w in G[pos]: if seen[nx] == 0: heappush(Q,(-min(mx,w),cnt+1,nx)) if __name__ == '__main__': main()