Files
OOP-Cpp/oop_hw1/oop_hw1_7/main.cpp
2025-08-11 00:01:30 +08:00

10 lines
113 B
C++

#include <iostream>
#include "fib.h"
using namespace std;
int main() {
int n;
cin >> n;
fibe(n);
return 0;
}