#include <stdio.h> int main() { int n = 15, m = 15; if (n = 10) m--; printf("%d, %d", n, m--); }
10, 14
Previous Question Next Question
Your comments will be displayed only after manual approval.