0
how do I solve this problem.
Youâre making a contact management system. The given program declares two variables, name and age. Complete the code to output "name is age years old", where name and age are the declared variable values. Name: James Age: 48
1 Answer
+ 2
print(name+" is "+age+" old ")