#include "printlib.h" int main() { int x, y; float xf, yf; x = 5; y = 2; println_int((-x)/y); println_int(x/y); return 0; } // EXPECTED // -2 // 2