#!/bin/bash
if [ 2 -eq 2 ]
then
 if [ 1 -eq 2 ]
 then
	echo s1
 else
	echo s2
 fi
fi
