1#! /usr/bin/env python 2# Copyright 2019 Google LLC. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6from __future__ import print_function 7 8import os 9import sys 10 11print(all(os.path.exists(a) for a in sys.argv[1:])) 12