#include "printlib.h" int main(){ int x,y,z; x = 42; y = 0; z = x%y; println_int(z); return 0; } // EXITCODE 1 // EXPECTED // Division by 0