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