#include #include "limits.h" using namespace std; int main() { float a{1}, b{2},c{3}; for(int i =0; i < ITERATIONS; ++i) { a = b + c; } return 0; }