此题考查基本功

#include <stdio.h>

int main(void) {

    long  long a;

    scanf("%lld",&a);

    printf("%09lld",a);

    return 0;

}