Skip to content

Instantly share code, notes, and snippets.

@nikvas0
Created May 26, 2020 17:16
Show Gist options
  • Save nikvas0/36897a94fae5738b8f3a03ea886852ea to your computer and use it in GitHub Desktop.
Save nikvas0/36897a94fae5738b8f3a03ea886852ea to your computer and use it in GitHub Desktop.
#include <iostream>
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(0);
std::cout.tie(0);
uint64_t id;
while ((std::cin >> id)) {
std::cout << id << "\t" << "testtesttesttest" << std::endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment