PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Created by djns
import random
str1 = '123456789'
str2 = 'qwertyuio@#lzxcvbnm'
str3 = 'MGAFARGUBUIBK'
str4 = str1+str2+str3
str5 = ["Mo", "Gaf", "ad", "ar"]
ls = list(str4)
random.shuffle(ls)
psw = ''.join([random.choice(ls) for x in range(int(input()))])
log = ''.join([random.choice(str5) for x in range(int(input()))])
print("Your login name is: ")
print(log)
print("-----------------------")
print("Your password is: ")
print(psw)
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run