Advertisement
a53

CTF

a53
Aug 23rd, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. /// Instructiuni:
  2. /// 1. Se va nota primul cuvant de la al 15-lea comentariu din solutia oficiala a problemei CaesarCrypt#2615 . Incepe cu "ap" .
  3. /// 2. Se va nota primul cuvant din singurul comentariu al solutiei oficiale a problemei XORCrypt#3101 . Incepe cu "Af" .
  4. /// 3. Se va aplica orice solutie oficiala de la XORCrypt#3101 pe cuvintele notate .
  5. /// 4. Rezultatul de la #3 trebuie scris in ctf.out .
  6. #include <fstream>
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11. ofstream g("ctf.out");
  12. g<<"00100000 00010110 00000101 00011010 00000010 00010011 00001000 ";
  13. g<<'\n';
  14. g.close();
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement