#include <math.h>
#include <stdio.h>

int main(void){

	printf("sin(1) = %f\n", sin(1.0));
}
