diff --git a/08xxx/08668.cpp b/08xxx/08668.cpp new file mode 100644 index 00000000..972249a8 --- /dev/null +++ b/08xxx/08668.cpp @@ -0,0 +1,16 @@ +#include +using namespace std; + +void solve(void) { + int x, s; cin >> x >> s; + + cout << (x < 2 * s ? "TAK" : "NIE"); +} + +int main(void) { + ios::sync_with_stdio(false); + cin.tie(nullptr); + + solve(); + return 0; +} \ No newline at end of file