#include int main(void){ int i; for (i = 1; i <= 3; i++){ printf("こんにちは\n"); printf("%d回目の繰り返しです\n", i); } return 0; }