#include <stdio.h>

int main() {

    // create and print the distance variable
    int distance = 135;
    printf("%d" , distance);

    // create the newDistance variable
    int newDistance = 429;
    // assign newDistance to distance and print distance in a separate line
    distance = newDistance
    distance = 429;

    printf("%d" , newDistance);

    return 0;
}