#include <stdio.h>
void UpBubbleSort(int *arr,int len)
{
 int i;
 for(i=0; i<(len); i++)
 {
  int temp;
  while(arr[i]>arr[i+1])
  {
   temp=arr[i];
   arr[i]=arr[i+1];
   arr[i+1]=temp;
   i=0;
  }

 }
}
int main(void) {
	// your code goes here
	return 0;
}
