• + 0 comments

    agreed on confunsing wording

    python3

    if __name__ == '__main__':
        i = int(4)
        d = float(4.0)
        s = str('HackerRank')
        
        a = int(input().strip())
        b = float(input().strip())
        c = str(input().strip())
        
        print(i+a)
        print(b+d)
        print(s, c)