// editor2
#include<stdio.h>
int main()
{
    int john_yield, emma_yield;
    scanf("%d", &John_yield);
    scanf("&d", &Emma_yield);
    printf("John Yeild: %d\n", John_yield);
    printf("Emma Yeild: %d\n", emma_yield);
    return 0;
}