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