#include<stdio.h>
void bubblesort(int a[],int num) {
int temp;
int count=0;
for(int i=0;i<num-1;i++) {
for(int j=i+1;j<num-i-1;j++) {
if(a[i]>a[j]) {
temp=a[i];
a[i]=a[j];
a[j]=temp;
count++;
}
}
}
printf("%d",count);
}
int main() {
int i,j,n=5;
int arr[]={1,2,3,4,5};
bubblesort(arr,n);
return 0;
}