#include int main(void) { int a,b; a=0; while(a<10){ b=0; while(b<10){ printf("+"); b++; } printf("\n"); a++; } return 0; }