ICPC 2019 vòng Quốc gia - L: Learning to Code

View as PDF

Submit solution

Points: 1.50
Time limit: 1.0s
Memory limit: 512M
Input: stdin
Output: stdout

Problem source:
ICPC 2019 vòng Quốc gia
Problem type
Allowed languages
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

In case the statement didn't load correctly, you can download the statement here: Statement

Sample Input 1

var a = "Gon";
var b = a;
var c = `My name is ${a}`;
print c;
print `My name is ${b}`;
end.

Sample Output 1

My name is Gon
My name is Gon

Sample Input 2

var one = "1";
var two = "2";
var three = "3";
print `${one} + ${two} = ${three}`;
print `1${`2${three}2`}1`;
end.

Sample Output 2

1 + 2 = 3
12321

Comments

Please read the guidelines before commenting.


There are no comments at the moment.