#! /usr/bin/env python
from stat import *
#!/bin/bash
x=1
x=1
while [ $x -le 5 ]
do
  echo "Welcome $x times"
  x=$(( $x + 1 ))
done
while (x <= 5 ):
    print("Welcome " + str(x) + " times")
    x=( x +\" 1 )
ÿ