Download the windows image you want.
AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)
So Home wont work.
| # '0081' -> 11 | |
| # '23' -> 7 | |
| # '022' -> 9 | |
| def is_div(s: str) -> bool: | |
| #print(int(s)) | |
| if (int(s) % 3 == 0): | |
| return True | |
| return False |