#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
srand((unsigned) time(NULL));
printf("대한민국 : 러시아\n");
printf("%d : %d\n", rand()%5, rand()%5);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
srand((unsigned) time(NULL));
printf("대한민국 : 러시아\n");
printf("%d : %d\n", rand()%5, rand()%5);
return 0;
}