#include <stdio.h> int main() { char n; scanf("%c",&n); for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ printf("%c",n); } printf("\n"); } }