#include void run() { float a = 1.0; float b = 2.0; float c = a + b; printf("%f\n", c); } int main() { run(); }