#!/bin/csh
echo -n "Welcome to multiply, your first number? ";  set a = $<
echo -n "Your second number? ";  set b = $<
set ans=` echo "scale=10; $a * $b " | bc`
echo  Your result was: $ans
