#include <stdio.h>

main() {
  int p, m, c;

  scanf("%d %d %d", &p, &m, &c);
  printf("%d\n", p + m + c);

  return 0;
}