#include <stdio.h> int main() { int k = -13; k = k / 3; printf("%d\n", k); return 0; }
-4
Previous Question Next Question
Your comments will be displayed only after manual approval.