Find the shortest path from any source node to any destination node

Write a program that can take a input of a graph with any number of vertext.
Then print the shortest path from any source node to any destination node.
( must use Dijsktra algorithm to solve this problem. )