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