#include<bits/stdc++.h>
using namespace std;
int n,m,a[5001],tot=0,tot1=0;
map<int,int>num;
int main(){
scanf("%d%d",&n,&m);
if(n==0&&m==0){
printf("0");
return 0;
}
for(int i=1;i<=m;i++){
int x,y;
scanf("%d%d",&x,&y);
a[i]=x;
num[x]=y;
}
sort(a+1,a+m+1);
for(int i=1;i<=m;i++){
if(tot1+num[a[i]]<n){
tot+=a[i]*num[a[i]];
tot1+=num[a[i]];
}
else{
tot+=a[i]*(n-tot1);
break;
}
}
printf("%d",tot);
return 0;
}