#include<stdio.h>
int main()
{
    long int a,b;
    scanf("%ld%ld",&a,&b);
    printf("Distance 1:\n%ld\nDistance 2:\n%ld");
    return 0;
}