#!/usr/bin/env python # User contributed content on the Perforce Public Depot is not # supported by Perforce, although it may be supported by its # author. This applies to all contributions even those submitted by # Perforce employees. # If you have any comments or need any help with the content of this # particular folder, please contact lcheung_AT_perforce.com, and I # will try to help. import sys if __name__ == '__main__': n = 0 targets = map(int,sys.argv[1:]) for line in sys.stdin: n+=1 if n in targets: continue print line,