2023-01-06 13:31:14 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2023-01-06 19:40:25 +01:00
|
|
|
void bye()
|
|
|
|
{
|
|
|
|
console_print("byeee!\n");
|
|
|
|
}
|
|
|
|
|
2023-01-06 13:31:14 +01:00
|
|
|
int main()
|
|
|
|
{
|
2023-01-06 19:40:25 +01:00
|
|
|
atexit(bye);
|
|
|
|
|
|
|
|
for (int i = 0; i < atoi("8"); i++) { console_print("."); }
|
2023-01-06 13:31:14 +01:00
|
|
|
|
|
|
|
console_print("\n");
|
|
|
|
}
|