Integers Come In All Sizes

Sort by

recency

|

404 Discussions

|

  • + 0 comments

    Here is HackerRank Integer Come in all sizes in python solution - https://programmingoneonone.com/hackerrank-integers-come-in-all-sizes-solution-in-python.html

  • + 0 comments
    a,b,c,d=int(input()),int(input()),int(input()),int(input())
    print(a**b+c**d)
    
  • + 0 comments

    Hackerrank is a great place to sharpen those skills and learn more languages while you're at it! Tigerexch 247

  • + 0 comments

    For Python3 Platform

    Other than exponentiation operator(**), pow function also can be used.

    a = int(input())
    b = int(input())
    c = int(input())
    d = int(input())
    
    print(a**b + c**d)
    
  • + 0 comments

    a=int(input()) b=int(input()) c=int(input()) d=int(input()) print(pow(a,b)+pow(c,d))