10 lines
117 B
C
10 lines
117 B
C
|
|
#define _ISOC99_SOURCE
|
||
|
|
|
||
|
|
#include <math.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
printf("%g\n", INFINITY);
|
||
|
|
return 0;
|
||
|
|
}
|