scanfex's blog

By scanfex, history, 5 years ago, In Russian

Hello. Your text to link here.... Please, write a code to problem A. My problem is how I can use input and output files? Thanksj)

  • Vote: I like it
  • +1
  • Vote: I do not like it

| Write comment?
»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Please help!

»
5 years ago, # |
  Vote: I like it 0 Vote: I do not like it

you can use this

int main()
{
    freopen("sum.in", "r", stdin);
    freopen("sum.out", "w", stdout);
    //your code
}