Computer Science, asked by swethaswee05, 2 months ago

5 poi
21. Given a maximum of
four digit to the base 17(10
-> A, 11 -> B, 12 -> C, 16 ->
G) as input, output its
decimal value. Input value:
23GF, derive the output​

Answers

Answered by virendranawkar1
0

Answer:

the answer is 5 it's correct

Answered by btechpriya62
1

Answer:

python program is

num=str(input())

print(int(num,17))

output: 10980

Similar questions