study_public/asm2/example_c_asm_and_coproc/main.c
2020-12-02 15:18:15 +03:00

19 lines
227 B
C

/*
Copyright 2020 KoroLion (github.com/KoroLion)
*/
#include <stdio.h>
float sum(float a, float b);
int main() {
float a, b;
scanf("%f %f", &a, &b);
float c = sum(a, b);
printf("%f\n", c);
return 0;
}