Write a program to print Hello I am “John Doe” and Hello I’am “John Doe” with single and double quotes.
main() {
print('Hello I am “John Doe” ');
print('''Hello I’am “John Doe”''');
}
main() {
print('Hello I am “John Doe” ');
print('''Hello I’am “John Doe”''');
}