Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 180 Bytes

File metadata and controls

14 lines (11 loc) · 180 Bytes
#include <iostream>

using std::cin; using std::cout; using std::endl; using std::cerr;

int main()
{
    int x;
    while(cin >> x && x != 42){
        //pass
    }
}