#include <stdio.h>
int main(){
int crypto = 71;
printf(" %c", crypto);
crypto+='+';
printf("%c", crypto);
crypto+='?';
crypto-='L';
int x = crypto;
printf("%c", crypto);
crypto=crypto+'?';
crypto-='.';
printf("%c", crypto);
printf("%c ", x);
printf("%c%c\n", '?'+'!'+'!'-7, '-'+'-'+15);
int a, b, line = 12;
for (a = line/2; a <= line; a = a+2) {
//for (b = 1; b < line-a; b = b+2) What the actual fuck?
for (b = 1; b <= a; b++)
printf("*");
for (b = 1; b <= line-a; b++)
printf(" "); // Double space. Gets you every time.
for (b = 1; b <= a-1; b++)
printf("*");
printf("\n");
}
for (a = line; a >= 0; a--) {
for (b = a; b < line; b++)
printf(" ");
for (b = 1; b <= ((a*2)-1); b++)
printf("*");
printf("\n");
}
return 0;
}