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