#!/bin/csh

set pwr2 = $1
set pwr3 = $2

if( $pwr2 >= 0 && $pwr3 >= 0 ) then
  exit 1
else
  exit 0
endif
