#include <stdio.h>

int main(void) {
	printf("%10d|\n", 34);
	printf("%-10d|\n", 34);
}
