Skip to content

Commit

Permalink
Add 08668.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiyabye committed Mar 25, 2024
1 parent b2b7bb9 commit aeedf11
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions 08xxx/08668.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <iostream>
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;
}

0 comments on commit aeedf11

Please sign in to comment.