#include <stdio.h>
main()
{int a,b,c,sum;
  scanf("%d%d%d",&a,&b,&c);
  sum=a+b+c;
  printf("%d\n,sum");  //printf("%d\n",sum);
}