#!/usr/bin/ruby # File: lab14.rb # Resources: Input14.txt infile = File.open("Input14.txt", "r") infile.each_line do |line| puts line end exit