Advertisement
smoke_th

Untitled

Apr 10th, 2021
548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. import json
  2. import requests
  3.  
  4. #=-1*24*B26/2-12*B26
  5. #=2*12*B26*-1+1*6*B26
  6. #=4*6*B26*-1-4*B26
  7.  
  8. for x in range(1, 26):
  9.     for y in range(1,26):
  10.         A = -1*24*x/2-12*y
  11.         B = 2*12*x*-1+1*6*y
  12.         C = 4*6*x*-1-4*y
  13.         print(str(A)+'\t'+str(B)+'\t'+str(C))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement