#include <stdio.h> int main() { int k = 0; do { k++; if (k == 2) continue; printf("Interview"); } while (k < 2); printf(" Mania"); }
Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.