mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
11 lines
150 B
C
11 lines
150 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int main()
|
|
{
|
|
printf("0\t25\t75\n4\t18\t78\n8\t11\t81\n12\t4\t84\n");
|
|
return 0;
|
|
}
|
|
|