summaryrefslogtreecommitdiff
path: root/progs/a273.py
blob: e6682bd9b472c5b8dcaa478f0797a7a357a5d44b (plain)
1
2
3
4
5
6
7
8
9
def check_Concat(str1,str2):
    N = len(str1)
    M = len(str2)
    if (N % M != 0):
        return False
    for i in range(N):
        if (str1[i] != str2[i % M]):
            return False         
    return True