#!/bin/bash
# your code goes here

x1="vijay"
x2="vijay"
x3="vijay"
if [ "$x1" == "$x2" -a "$x2" == "$x3" ];
 then 
 echo "all are same"
fi