Computer Science, asked by errortcp, 9 hours ago

n=int(input())
c=0
a1=[1,2,3,4,5,6]
a2=[1,2,3,4,5,6]
for i in a1:
for j in a2:
if i+j == n:
c+=1

print(c)​

Answers

Answered by charan555
1

Answer:

but what is the value of n ?

Similar questions