#!/bin/csh -f

if ( ! -e synchronous.out ) then
   echo File \"synchronous.out\" not found.
   exit 1
endif

if ( { diff -w synchronous.out synchronous.sol } ) then
   echo "PROGRAM ACCEPTED."
else
   echo "WRONG OUTPUT."
endif

