#include "stdio.h" int main() { int A, B; char S[10]; scanf("%d %d",&A,&B); scanf("%s",S); printf("%d %s",A+B,S); return 0; }