複数のprint文

これまで、私たちはprint()文が1つだけの1行プログラムを試してきました。現実のプログラムは通常、多くのコード行を持ち、この演習では初めての複数行のプログラムを書きます。
プログラムには複数のprint文を含めることができます。その場合、各print文は別々の行に内容を出力します。
print(98234539)
print('is a big number')
このプログラムは1行目に98234539を、2行目にis a big numberを出力します。その結果、次のような出力になります:
98234539
is a big number
 
連続して多くのprint文を並べることができますが、Pythonはそれらを順番に実行します。まず最初のprint文の内容を出力し、その後2番目のprint文の内容を出力し、次に3番目のものと続きます。
つまり、プログラムは行ごとに実行され、各文は前のものの後に実行されます。
print('Hi, this is Alice')
print('Hi Alice, how are you doing?')
print('I am great! What about you?')
print('Great! Thanks!')
このプログラムは最初のprint文を出力し、その後2番目、3番目、最後に4番目を出力します。これにより、次の出力になります:
Hi, this is Alice
Hi Alice, how are you doing?
I am great! What about you?
Great! Thanks!

チャレンジ

プログラムを書き、1行目にBob is 19 years old.、2行目にAlice is older than Bob.を出力してください。
 

Constraints

Time limit: 2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue