NOJ/34/main.c

11 lines
154 B
C
Raw Normal View History

2020-08-31 16:46:43 +00:00
#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;
}