You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
231 B

#pragma clang system_header
namespace std {
class istream {
public:
bool is_eof();
char get_char();
};
istream &operator>>(istream &is, char &c) {
if (is.is_eof())
return;
c = is.get_char();
}
extern istream cin;
};