#include<stdio.h>
void main(){
    
    int long  a,b;
    
    scanf("%d %d",&a,&b);
    printf("Distance1:%d\nDistance2:%d",a,b);
}