summary refs log tree commit diff
path: root/main.cpp
blob: afed0aa8e3f298f280aa586577e51adaef65a375 (plain)
1
2
3
4
5
6
#include <iostream>

int main(){
  std::cout << "Hello World" << std::endl;
  return 0;
}