#include <stdio.h>

int main() {
    int muthav[10]={1,2,3,4,5};
    int temp,start=0,end=5;
    while(start<end){
        temp=muthav[start];
        muthav[end]=temp;
        start++;
        end--;
    }
    printf("%",start);
}