#include <stdio.h> int main() { int p = 3, q = 4; p += q -= p; printf("%d %d", p, q); }
4 1
Previous Question Next Question
Your comments will be displayed only after manual approval.