/* Test right padding of %d */

#include "suite.h"

int main(void)
{
	printf("'%-3d'\n", 7);
	return 0;
}
