11 lines
154 B
C
11 lines
154 B
C
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
int main(void){
|
||
|
double a, b;
|
||
|
scanf("%lf %lf",&a,&b);
|
||
|
sum = atan(b) - atan(a);
|
||
|
printf("%.6lf",sum);
|
||
|
return 0;
|
||
|
}
|