// editor1
#include<stdio.h>
void main()
{
    long long int a, b;
    scanf("%11d%11d", &a,&b);
    printf("Distance 1: %11d\nDistance 2: %11d", a, b);
}