#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 510, M = 100010;
int n1, n2, m;
int h[N], e[M], ne[M], idx;
int match[N];//存所有女孩的个数
bool st[N];//存该女孩是否有男朋友
void add(int a, int b)
{
e[idx] = b, ne[idx] = h[a], h[a] = idx ++;
}
//这个函数的作用是用来判断,如果加入x来参与模拟配对,会不会使匹配数增多
bool find(int x)
{
//遍历x这个男生所心仪的女生
for(int i = h[x]; i != -1; i = ne[i])
{
int j = e[i];
//如果在这一轮匹配中该女孩尚未配对
if(!st[j])
{
//先预定是自己对象
st[j] = true;
//如果这个女孩没有男朋友或者和他匹配的男朋友有其他心仪对象就让给x
if(match[j] == 0 || find(match[j]))
{
match[j] = x;
return true;
}
}
}
//自己心仪的全部被锁定,配对失败
return false;
}
int main()
{
scanf("%d%d%d", &n1, &n2, &m);
memset(h, -1, sizeof h);
while (m --)
{
int a, b;
scanf("%d%d", &a, &b);
add(a, b);
}
//计算有多少对匹配(res)
int res = 0;
for(int i = 1; i <= n1; i ++)
{
memset(st, false, sizeof st);
if(find(i)) res ++;
}
printf("%d\n", res);
return 0;
}