// editor3
#include<stdio.h>
#include<stdlib.h>


int main() {
    long num1,num2;
    
    printf("enter the first long number:\n");
    scanf("%1d", &num1);
    
    printf("enter the second long number:\n");
    scanf("%1d", &num2);
    
    printf("Distance 1: %1d\n",num1);
    printf("Distance 2: %1d\n",num2);
    
    return ;
}