Submission details
Task:Alien Invasion II
Sender:Naila
Submission time:2020-09-19 15:48:23 +0300
Language:Python3 (CPython3)
Status:READY
Result:
Test results
testverdicttime
#1--details
#2--details
#3--details

Code

'''

                            Online Python Compiler.
                Code, Compile, Run and Debug python program online.
Write your code in this editor and press "Run" button to execute it.

'''

import math
import sys


def Prime(n):
    cnt = 0

    i = 2
    while(i <= math.sqrt(n) and cnt < 1):
        if n % i == 0:
            cnt += 1

        i+=1

    if cnt == 1:
        return (i-1)
    
    return n
    


if __name__ == '__main__':
    n = int(input())
    n1 = n

    i = 1

    n2 = Prime(n1)
    
    while (n2==n1):
        s = str(n)
        s1 = str(i)

        s = s1 + s

        n1 = int(s)

        n2 = Prime(n1)

        i += 1

    print(n1)
    print(n2, end=' ')
    print(int(n1/n2))

Test details

Test 1

Verdict:

input
2368469234876449

correct output
22368469234876449
3 7456156411625483

user output
(empty)

Test 2

Verdict:

input
292929292929292929292929292931

correct output
129292929292929292929292929293...

user output
(empty)

Test 3

Verdict:

input
292929292929292929292929292979

correct output
129292929292929292929292929297...

user output
(empty)