Input Specification:
output Specification :
Example 1:
Explanation:
Integers 1 and 3 are co-prime to 4, but 2 is not.
Example 2:
Explanation:
Integers 1,3,5,7,9,11,13 and 15are co-prime to 16.
Answer are :
x = int(input(""));
count1=int(1);
res =1;
count2=count1;
while count1!=x:
res = count1 % 2;
if res!=0:
count2=count2+1;
count1=count1+1
print(count2-1)