8 lines
90 B
C++
8 lines
90 B
C++
#include <stdio.h>
|
|
|
|
int answer();
|
|
|
|
int main() {
|
|
printf("%d\n", answer());
|
|
return 0;
|
|
}
|