/*****************************************
备注:
******************************************/
#include <queue>
#include <math.h>
#include <stack>
#include <stdio.h>
#include <iostream>
#include <vector>
#include <iomanip>
#include <string.h>
#include <algorithm>
using namespace std;
void swap(int x,int y,int t)
{
cin >> x >> y >> t;
t = x,x = y,y = t;
}
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(a<b) swap(a,b);
if(b<c) swap(b,c);
if(a<b) swap(a,b);
if(b<=a-c+1)
cout<<1+b+c;
else
cout<<2+a+(b-a+c-1)/2;
return 0;
}