#include <stdbool.h>
#include <stdint.h>
#include<stdio.h>
bool f(int A,int B,int K)
{
int i;
for(i=0;i<K;i++)
{
if(A%10!=B%10)return false;
A/=10;
B/=10;
}
return true;
}
int main()
{
int A,B,K;
scanf("%d %d %d",&A,&B,&K);
if(f(A,B,K)==true)printf("-1\n");
else printf("%d\n",A+B);
return 0;
}

京公网安备 11010502036488号