#include <stdio.h>

int main(void) {
    float a = 1., b = 0.;
    float c = a/b;
    printf("Exiting normally.\n"); 
    return (int)c;
}
