#!/bin/tcsh

if ($#argv != 1) then
    exit (1);
else
    @ total = $1 * $1;
    echo "$total"
endif
