My issue
print"(7+19)"
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
print"(7+19)"
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
Hi @siddharthroy75
The answer will be print(7+19). so it will print sum of 7 and 19. you provided print"(7+19)" it gives an syntax error that is invalid. you have to give print(7+19) → output:26, to print the sum of the values. if you want to print like 7+19 as output use print(“7+19”) gives 7+19 as string.