6 lines
119 B
C++
6 lines
119 B
C++
|
|
#include <iostream>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
std::cout << "print" + 5 << std::endl; //nins jol hozzafuzve a szam a stringhez
|
||
|
|
}
|