10 lines
142 B
Python
10 lines
142 B
Python
import time
|
|
import math
|
|
|
|
|
|
def main():
|
|
print("Hello, this is Patrick")
|
|
t0 = time.time()
|
|
|
|
if __name__ == "__main__":
|
|
main() |