Advertisement
dark-Matter

runner

Mar 7th, 2021
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. import os
  2.  
  3. os.system("g++ -pthread parallel.cpp")
  4. n = 1
  5. while n*n < 4000:
  6.     os.system(f"echo {n*n} | ./a.out ")
  7.     n+=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement