CodeChef::TEST

 

#include <bits/stdc++.h>
using namespace std ;

int main (){
int num{0};
while (num != 42){
cin >> num ;

if (num != 42){
cout << num << '\n';
}
}
return 0 ;
}

Comments

Popular posts from this blog

CodeChef::CSUB

How Recursion Works?

Atcoder Educational Dp contest :: C vacation